{% extends "base.html" %} {% block title %}Status{% endblock %} {% block content %}
{% if has_active_incidents %}
Active Incident
{% else %}
All Systems Operational
{% endif %}
{% for group_name, group_services in services_by_group.items() %}

{{ group_name or "Services" }}

{% for service in group_services %}
{{ service.name }} {{ service.current_status | title }}
{% endfor %} {% endfor %}
{% if incidents %}

Recent Incidents

{% for incident in incidents %}

{{ incident.title }}

{{ incident.severity | title }} {{ incident.status | title }}

{{ incident.started_at }}

{% endfor %}
{% endif %}

Get notified when incidents occur:

{% endblock %}