{# upload your own favicon.png to the root of your repo and replace with href="favicon.png" #}
{% 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 }}

{% for update in incident.updates %}

Update {{ update.created }}
{{ update.body }}

{% endfor %}
{% endfor %} {% else %} No incidents in the past 90 days. {% endif %}