{% extends "watchman/base.html" %} {% load i18n %} {% block content %} {% block status_content %}

{% trans "System Status" %} {% if overall_status %} {% trans "OK" %} {% else %} {% trans "WARNING" %} {% endif %}{# overall_status #}

{% if overall_status %} {% trans "All systems go!" %} {% else %} {% trans "Some systems down!" %} {% endif %}{# overall_status #}

{% for type_name, type in checks.items %} {% for status in type.statuses %} {% if status.ok %} {% else %} {% endif %}{# status.ok #} {% endfor %}{# for status in type.statuses #} {% empty %} {% endfor %}{# for type_name, type in checks.items #}
{% trans "Type" %} {% trans "Name" %} {% trans "Status" %}
{{ type_name|title }} {{ status.name }}{% trans "OK" %} {% trans "ERROR!" %}
{% trans "No checks indicated." %}
{% endblock %}{# status_content #} {% block error_content %} {% for type_name, type in checks.items %} {% for status in type.statuses %} {% if not status.ok %} {% endif %}{# not status.ok #} {% endfor %}{# for status in type.statuses #} {% endfor %}{# for type_name, type in checks.items #} {% endblock %}{# error_content #} {% if expose_watchman_version %}

Watchman version: {{ watchman_version }}

{% endif %} {% endblock %}{# content #}