{% load i18n %} {% block content %}

{% trans 'System Status' %}

{% if overall_status %} {% trans 'All systems up and running!' %} {% else %} {% trans 'WARNING - Some systems down!' %} {% endif %}{# overall_status #}

{% for type in checks %} {% for status in type.statuses %} {% if status.ok %} {% else %} {% endif %}{# status.ok #} {% endfor %}{# for status in type.statuses #} {% empty %} {% endfor %}{# for type in checks #}
{% trans 'Type' %} {% trans 'Name' %} {% trans 'Status' %}
{{ type.type|title }} {{ status.name|title }}{% trans 'OK' %}
{% trans 'No checks indicated.' %}
{% if not overall_status %}{% trans 'Click an error button to see the full traceback' %}{% endif %}{# overall_status #}
{% endblock %}{# status_content #} {% for type in checks %} {% for status in type.statuses %} {% if not status.ok %} {% endif %}{# not status.ok #} {% endfor %}{# for type in checks #} {% endfor %}{# for status in type.statuses #}