{% extends "base.html" %} {% block extra_css %} {% endblock %} {% block sidebar %} {% include "sidebar.html" with active="docker" %} {% endblock %} {% block bar %}
dashboard > hosts
{% endblock %} {% block header %}

Admin/Nodes

{% endblock %} {% block content %}
{% for pool in pools %}
{% for node in pool.1 %} {% endfor %}
Host Started units Stopped units Total units Last success Status
{{ node.Address }} {{ node.Units.started|default:"0" }} {{ node.Units.stopped|default:"0" }} {{ node.Units.total|default:"0" }} {{ node.Metadata.LastSuccess|date:"Y/m/d H:i:s e" }} {{ node.Status }}
{% endfor %}
{% endblock %}