mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-02-21 11:46:07 +00:00
7 lines
303 B
HTML
7 lines
303 B
HTML
{% load linemode %}{% linemode %}
|
|
{% if status == "down" %}
|
|
{% line %}🔴 “{{ check.name_then_code }}” is DOWN{% if flip.reason %} ({{ flip.reason_long }}){% endif %}.{% endline %}
|
|
{% else %}
|
|
{% line %}🟢 “{{ check.name_then_code }}” is UP.{% endline %}
|
|
{% endif %}
|
|
{% endlinemode %}
|