{% 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 %}

{{ pool.0 }}

{{ pool.1 | length }} nodes
{% for node in pool.1 %} {% endfor %}
Host Started units Stopped units Total units Last success Status
{{ node.address }} {{ node.units_stats.started|default:"0" }} {{ node.units_stats.stopped|default:"0" }} {{ node.units_stats.total|default:"0" }} {{ node.last_success|date:"Y/m/d H:i:s e" }} {{ node.status }}
{% endfor %}
{% endblock %}