{% extends "base.html" %} {% block title %}Incidents - MCP Network Diagnostics{% endblock %} {% block content %}
Incident History (Last {{ days }} days)
{% if incidents %} {% for incident in incidents %} {% endfor %}
Severity Summary Affected Devices Created Status
{{ incident.severity.upper() }} {{ incident.summary }} {{ incident.affected_devices|length if incident.affected_devices else 0 }} {{ incident.created_at.strftime('%Y-%m-%d %H:%M') }} {% if incident.resolved_at %} Resolved {% else %} Active {% endif %}
{% else %}

No incidents found

{% endif %}
{% endblock %}