{% 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.create_date.strftime('%Y-%m-%d %H:%M:%S') }} UTC {% if incident.closed %} resolved {% else %} {{ incident.severity }} {% endif %} {% for system in incident.systems %} {{ system }} {% endfor %}
{{ incident.name }}

{{ incident.html_desc }}

{% for comment in incident.parsed_comments %}

Update {{ comment.parsed_date.strftime('%Y-%m-%d %H:%M:%S') }} UTC by {{ comment.memberCreator.initials }}
{{ comment.html_desc }}

{% endfor %}
{% endfor %} {% else %} There are currently no known incidents. \o/ {% endif %}