healthchecks/templates/integrations/victorops_description.html
2016-05-23 17:03:06 -07:00

8 lines
229 B
HTML

{% load humanize %}
{% if check.status == "down" %}
{{ check.name_then_code }} is DOWN.
Last ping was {{ check.last_ping|naturaltime }}.
{% else %}
{{ check.name_then_code }} received a ping and is now UP
{% endif %}