You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
981 B

{% load humanize %}
{% with check.get_status as status %}
{% if status == "down" %}
This check is down. Last ping was {{ check.last_ping|naturaltime }}.
{% elif status == "up" %}
This check is up. Last ping was {{ check.last_ping|naturaltime }}.
{% elif status == "grace" %}
This check is late. Last ping was {{ check.last_ping|naturaltime }}.
{% elif status == "paused" and check.manual_resume %}
This check is paused, and will ignore pings until resumed.
{% if rw %}
<a id="resume-btn" href="#">(Resume&nbsp;Now)</a>
{% endif %}
{% elif status == "paused" %}
This check is paused.
{% elif status == "new" and check.n_pings %}
This check is ready for pings.
{% elif status == "new" %}
This check has never received a ping.
{% elif status == "started" %}
This check is currently running. Started {{ check.last_start|naturaltime }}.
{% endif %}
{% endwith %}