{% if check.get_status == "new" %}
NEW |
{% elif check.get_status == "paused" %}
PAUSED |
{% elif check.in_grace_period %}
LATE |
{% elif check.get_status == "up" %}
UP |
{% elif check.get_status == "down" %}
DOWN |
{% endif %}
|
{% if check.name %}
{% if check.name|length > 20 %}
{{ check.name }}
{% else %}
{{ check.name }}
{% endif %}
{% else %}
unnamed
{% endif %}
{% if check.tags %}
{% for tag in check.tags_list %}
|
{% endfor %}
{% endif %}
|
{% if check.last_ping %}
{{ check.last_ping|naturaltime }}
Show Log…
{% else %}
Never
{% endif %}
|
{% endfor %}
{% endfor %}