2021-09-11 22:44:15 +00:00
|
|
|
{% extends 'base.html' %}
|
2021-09-21 23:15:17 +00:00
|
|
|
{% from 'parts/alert_list.html' import alert_list %}
|
2021-09-11 22:44:15 +00:00
|
|
|
{% block head %}
|
2021-09-16 22:41:29 +00:00
|
|
|
<meta http-equiv="refresh" content="15;url=/alerts" />
|
2021-09-11 22:44:15 +00:00
|
|
|
{% endblock %}
|
|
|
|
{% block content_inner %}
|
|
|
|
{% if data %}
|
2021-09-21 23:57:51 +00:00
|
|
|
<h3 class="h4">Current Alerts: {{ data.alerts_current | length }}</h3>
|
|
|
|
{{ alert_list(data.alerts_current) }}
|
2021-09-11 22:44:15 +00:00
|
|
|
<hr>
|
2021-09-21 23:57:51 +00:00
|
|
|
<h3 class="h4">Previous Alerts: {{ data.alerts_previous | length }}</h3>
|
|
|
|
{{ alert_list(data.alerts_previous) }}
|
2021-09-11 22:44:15 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|