mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-12 00:01:19 +00:00
5 lines
177 B
HTML
5 lines
177 B
HTML
{% load humanize %}
|
|
{{ check.name_then_code }} is {{ status|upper }}.
|
|
{% if status == "down" and check.last_ping %}
|
|
Last ping was {{ check.last_ping|naturaltime }}.
|
|
{% endif %}
|