BAPSicle/ui-templates/alerts.html
2021-09-22 00:57:51 +01:00

14 lines
473 B
HTML

{% extends 'base.html' %}
{% from 'parts/alert_list.html' import alert_list %}
{% block head %}
<meta http-equiv="refresh" content="15;url=/alerts" />
{% endblock %}
{% block content_inner %}
{% if data %}
<h3 class="h4">Current Alerts: {{ data.alerts_current | length }}</h3>
{{ alert_list(data.alerts_current) }}
<hr>
<h3 class="h4">Previous Alerts: {{ data.alerts_previous | length }}</h3>
{{ alert_list(data.alerts_previous) }}
{% endif %}
{% endblock %}