{% extends "base.html" %} {% block title %}All Incidents{% endblock %} {% block breadcrumb %}All Incidents{% endblock %} {% block content %}
{{incidents|length}} result{% if incidents|length != 1 %}s{% endif %}
{% if q or sev or status or cat %} ✕ Clear {% endif %}
{% if incidents %}
{% for i in incidents %} {% endfor %}
RefTitleSeverityStatus CategoryAssigned ToLocationCreated
{{i.ref}} {{i.title}} {{i.severity}} {% if i.status=='Open' %}Open {% elif i.status=='In Progress' %}In Progress {% elif i.status=='Resolved' %}Resolved {% else %}{{i.status}}{% endif %} {{i.category}} {{i.assigned_to or '—'}} {{i.location or '—'}} {{i.created_at[:10]}}
View Edit
{% else %}
🔍
No incidents match your filters
Try adjusting the filters above, or log a new incident.
Clear filters Log incident
{% endif %}
{% endblock %}