healthchecks/templates/front/log_status_text.html
2018-12-18 22:57:12 +02:00

16 lines
670 B
HTML

{% load humanize %}
{% with check.get_status as status %}
{% if status == "down" %}
This check is down. Last ping was {{ check.last_ping|naturaltime }}.
{% elif status == "up" %}
This check is up. Last ping was {{ check.last_ping|naturaltime }}.
{% elif status == "grace" %}
This check is late. Last ping was {{ check.last_ping|naturaltime }}.
{% elif status == "paused" %}
This check is paused.
{% elif status == "new" %}
This check has never received a ping.
{% elif status == "started" %}
This check is currently running. Started {{ check.last_start|naturaltime }}.
{% endif %}
{% endwith %}