{% load static %}

{{ object }}

{% for monitor in monitors %}
{% if monitor.latest_is_up == True %} {% elif monitor.latest_is_up == False %} {% else %} ? {% endif %}
{{ monitor }}
{% if monitor.latest_is_up == True %} Service is working normally {% elif monitor.latest_is_up == False %} Down since {{ monitor.last_change }} {% elif monitor.latest_is_up == None %} No status reported {% endif %}
{% endfor %}
Powered by