{% extends "base.html" %}
{% block base_header_additional_head %}
{% endblock %}
{% block base_content %}
NAV Links |
{% for title,link in nav_links.items %}
{{ title }}
{% endfor %}
|
External links |
{{ external_links|safe }} |
Contact information |
{{ contact_information|safe }} |
{{ welcome|safe }}
Messages
{{ current_messages|length }} active
message{{ current_messages|pluralize }}
Published |
Title |
Description |
Tasks |
{% if current_messages %}
{% for m in current_messages %}
{{ m.publish_start }} |
{{ m.title }} |
{{ m.description }} |
{{ m.maintenance_tasks.all|length }}
|
{% endfor %}
{% endif %}
Status now
{{ boxes_down|length }} IP device{{ boxes_down|pluralize }} down,
{{ num_shadow }} in shadow.
Sysname |
IP |
Down since |
Downtime |
{% if boxes_down %}
{% for b in boxes_down %}
{{ b.netbox.sysname }} |
{{ b.netbox.ip }} |
{{ b.start_time }} |
{{ b.start_time|timesince:date_now }} |
{% endfor %}
{% endif %}
{% endblock %}