{% if not panels %}
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

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 %}

Update {{ update.created }} UTC

{{ update.body|safe }} {% endfor %}
{% endfor %} {% else %} No incidents in the past 90 days. {% endif %}