{% 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 }} {% autoescape false %}

{{ alert.description | replace("\n\n", "

") | replace("\n", "
")}}

{% endautoescape %}
{% endfor %}

Previous Alerts: {{ data.alert_count_previous }}

{% endif %} {% endblock %}