2021-05-21 12:57:23 +03:00

6 lines
269 B
HTML

{% load humanize %}
{% if check.status == "down" %}
{{ site_name }}: The check "{{ check.name_then_code|safe }}" is DOWN. Last ping was {{ check.last_ping|naturaltime }}.
{% else %}
{{ site_name }}: The check "{{ check.name_then_code|safe }}" is UP.
{% endif %}