{% extends 'base.html' %} {% block head %} {% endblock %} {% block content_inner %} {% if data %}

Current Alerts: {{ data.alert_count_current }}

{% for alert in data.alerts_current %}

{{ alert.severity }}

Since {{ alert.start_time }} Last Seen {{ alert.last_time }} {% if alert.end_time > -1 %} Ended {{ alert.end_time }} {% endif %}
Module: {{ alert.module }}
{{ alert.description }}
{% endfor %}

Previous Alerts: {{ data.alert_count_previous }}

{% endif %} {% endblock %}