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.

22 lines
981 B

  1. {% load humanize %}
  2. {% with check.get_status as status %}
  3. {% if status == "down" %}
  4. This check is down. Last ping was {{ check.last_ping|naturaltime }}.
  5. {% elif status == "up" %}
  6. This check is up. Last ping was {{ check.last_ping|naturaltime }}.
  7. {% elif status == "grace" %}
  8. This check is late. Last ping was {{ check.last_ping|naturaltime }}.
  9. {% elif status == "paused" and check.manual_resume %}
  10. This check is paused, and will ignore pings until resumed.
  11. {% if rw %}
  12. <a id="resume-btn" href="#">(Resume&nbsp;Now)</a>
  13. {% endif %}
  14. {% elif status == "paused" %}
  15. This check is paused.
  16. {% elif status == "new" and check.n_pings %}
  17. This check is ready for pings.
  18. {% elif status == "new" %}
  19. This check has never received a ping.
  20. {% elif status == "started" %}
  21. This check is currently running. Started {{ check.last_start|naturaltime }}.
  22. {% endif %}
  23. {% endwith %}