{% extends '../layouts/index.html' %} {% block content %}

Status

{{ incidents | length }} active incidents on our platform.

{% regroup incidents by status as grouped_list %} {% for status in grouped_list %}

{{ status.grouper.label }} ({{ status.list | length }}) {% comment %} {% include "../layouts/partials/status_pill.html" with status=status.grouper size="big" only %} {% endcomment %}

    {% for incident in status.list %} {% include "../layouts/partials/incident_card.html" with incident=incident status=False only %} {% endfor %}
{% empty %}

No incidents declared 🎉

Or maybe we have an incident with the incident management tool?

{% endfor %}
{% endblock %}