Modifys our template

This commit is contained in:
Austin 2017-12-14 15:28:23 -08:00
parent abe7076a73
commit 7808f3a5d4
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{% load humanize %}
{{ check.name_then_code }} is {{ check.status }}.
{{ check.name_then_code }} is {{ check.status|upper }}.
{% if check.status == "down" %}
Last ping was {{ check.last_ping|naturaltime }}
Last ping was {{ check.last_ping|naturaltime }}.
{% endif %}

View File

@ -1 +1 @@
{{ check.name_then_code }} is {{ check.status }}
{{ check.name_then_code }} is {{ check.status|upper }}