{% extends "base_status.html" %} {% block title %}Network Parents{% endblock %} {% block nav2 %}Network Parents{% endblock %} {% block smallheader %}{% endblock %} {% block largeheader %} Network Parents {% endblock %} {% load adagiostags %} {% block content %} {% if hosts %} {% for row in hosts %} {% if row.state == 0 %} {% else %} {% endif %} {% for i in row.child_hosts %} {% endfor %} {% endfor %}
Host Name Address Children Duration Last Check Status Child Host Health
{{ row.name }} {{ row.address }} {{ row.childs|length }} {% if row.last_state_change != 0 %} {{ row.last_state_change|timestamp|timesince }} {% endif %} {% if row.last_check != 0 %} {{ row.last_check|timestamp|timesince }} ago {% else %} never {% endif %} UPDown
{{ i.name }}
{% else %} No Network parents found. {% endif %} {% endblock %}