{% if overall_status %}
{% trans 'All systems up and running!' %}
{% else %}
{% trans 'WARNING - Some systems down!' %}
{% endif %}{# overall_status #}
{% trans 'Type' %}
{% trans 'Name' %}
{% trans 'Status' %}
{% for type in checks %}
{% for status in type.statuses %}
{{ type.type|title }}
{{ status.name|title }}
{% if status.ok %}
{% trans 'OK' %}
{% else %}
{% endif %}{# status.ok #}
{% endfor %}{# for status in type.statuses #}
{% empty %}
{% trans 'No checks indicated.' %}
{% endfor %}{# for type in checks #}
{% 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 %}