{% with check.get_status_with_started as status %}
{% if status == "new" %}
NEW |
{% elif status == "paused" %}
PAUSED |
{% elif status == "grace" %}
LATE |
{% elif status == "up" %}
UP |
{% elif status == "started" %}
STARTED |
{% elif status == "down" %}
DOWN |
{% endif %}
{% endwith %}
|
{% if check.name %}
{{ check.name|mangle_link }}
{% else %}
unnamed
{% endif %}
{% if check.tags %}
{% for tag in check.tags_list %}
|
{% endfor %}
{% endif %}
|
{% if check.last_ping %}
{{ check.last_ping|naturaltime }}
{% else %}
Never
{% endif %}
Details…
|
{% endfor %}
{% endfor %}