All Systems operational.
{% else %}
{% for severity, systems in panels.items() if systems %}
{{ severity.capitalize() }} on {% for system in systems %}{{ system }}{% if not loop.last %}, {% endif %}{% endfor %}.
{% endfor %}
{% endif %}
Systems
-
{% for system, data in systems.items() %}
- {{ system }} {{ data.status }} {% endfor %}
Incidents
{% if incidents %} {% for incident in incidents %}
{{ incident.created }} UTC
{% if incident.closed %}
resolved
{% else %}
{{ incident.severity }}
{% endif %}
{% for system in incident.systems %}
{{ system }}
{% endfor %}
{{ incident.title }} {{ incident.body|safe }} {% for update in incident.updates %}
{% endfor %}
{% else %}
No incidents in the past 90 days.
{% endif %}
{{ incident.title }} {{ incident.body|safe }} {% for update in incident.updates %}
Update {{ update.created }} UTC
{{ update.body|safe }} {% endfor %}