{% if alerts %} {% for item in alerts %}
{% if item.alert.severity == 'critical' %} {% elif item.alert.severity == 'warning' %} {% else %} {% endif %}

{{ item.alert.title }}

{% if item.alert.message %}

{{ item.alert.message }}

{% endif %}

{{ item.time_ago }}

{% endfor %} {% else %}

No active alerts

All systems operational

{% endif %}
{% if total_count > 0 %}
View all {{ total_count }} alert{{ 's' if total_count != 1 else '' }}
{% endif %}