healthchecks/templates/integrations/telegram_message.html
Laura Hausmann 448721e916 Add colored emojis to telegram messages
so you can see whether it's up or down at first glance
2021-03-04 12:21:28 +02:00

7 lines
246 B
HTML

{% load humanize %}
{% if check.status == "down" %}
🔴 The check "{{ check.name_then_code }}" is <b>DOWN</b>. Last ping was {{ check.last_ping|naturaltime }}.
{% else %}
🟢 The check "{{ check.name_then_code }}" is now <b>UP</b>.
{% endif %}