{% extends "base_site.html" %} {% load static %} {% load i18n %} {% block extrastyle %} {% endblock %} {% block extrascript %} {% endblock %} {% block content %}

Host Dashboard:

{% for host in hosts %} {% if host.state >= 0 %}
{% else %}
{% endif %}

{{host.name}}

{% if host.state >= 0 %}

RUNNING

{% else %}

STOPPED

{% endif %}
{% endfor %}
{% endblock %}