{% extends "reports/base.html" %} {% block content %}
Report period: {{ date_from }} to {{ date_to }}
{{ total_alerts }}
Total Alerts
{{ critical_count }}
Critical
{{ warning_count }}
Warning
{{ info_count }}
Info
{% if mttr_minutes is not none %}
{{ mttr_display }}
Avg MTTR
{% endif %}
{% if alerts %}

Alert Events

{% for alert in alerts %} {% endfor %}
Timestamp Device Severity Message Status Duration
{{ alert.fired_at }} {{ alert.hostname or '-' }} {{ alert.severity | upper }} {{ alert.message or '-' }} {{ alert.status | upper }} {{ alert.duration or '-' }}
{% else %}
No alerts found for the selected date range.
{% endif %} {% endblock %}