{% extends "base.html" %} {% block title %}All Incidents{% endblock %} {% block breadcrumb %}All Incidents{% endblock %} {% block content %}
| Ref | Title | Severity | Status | Category | Assigned To | Location | Created | |
|---|---|---|---|---|---|---|---|---|
| {{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]}} |