{% extends "base.html" %} {% block import %} {% endblock %} {% block container %}
{% if alarm_events %}
{% for event in alarm_events %} {% endfor %} {% else %} {% endif %}
Project Name Alarmer Name Event Type Event Time Message
{{ event.project.project_name }} {{ event.alarm.alarmer_name }} {% if event.event_type.value == 'STARTUP' %} {% elif event.event_type.value == 'SHUTDOWN' %} {% endif %} {{ event.event_time.strftime("%Y-%m-%d %H:%M:%S") }} {{ event.message or "No message" }}
{% include 'welcome_alarm.html' %}
{% if total_pages > 1 %} {% endif %}
{% if alarms %} {% for alarm in alarms %} {% endfor %} {% else %} {% endif %}
Alarmer Name Alarmer Type Actions
{{ alarm.alarmer_name }} {{ alarm.backend_type }}
No created alarms
{% if projects %} {% for project in projects %} {% endfor %} {% else %} {% endif %}
Project Name Alarm Working Heartbeat Connected Alarms Actions
{{ project.project_name }} {% if project.id in working_alarms %} {% else %} {% endif %} {{ project.heartbeat }}
No connected applications
{% endblock %}