healthchecks/templates/integrations/signal_message.html
Pēteris Caune cd99af14ba
Add Signal integration
Fixes: #428
2021-01-09 11:58:18 +02:00

8 lines
282 B
HTML

{% load humanize %}{% spaceless %}
{% if check.status == "down" %}
The check “{{ check.name_then_code|safe }}” is DOWN. Last ping was {{ check.last_ping|naturaltime }}.
{% else %}
The check “{{ check.name_then_code|safe }}” is now UP.
{% endif %}
{% endspaceless %}