Remove HTML markup

This commit is contained in:
carson.wang 2020-08-18 22:44:20 +08:00 committed by Pēteris Caune
parent 74668551a7
commit f15e16a0bb
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2

View File

@ -1,6 +1,6 @@
{% load humanize %} {% load humanize %}
{% if check.status == "down" %} {% if check.status == "down" %}
The check "{{ check.name_then_code }}" is <b>DOWN</b>. Last ping was {{ check.last_ping|naturaltime }}. The check "{{ check.name_then_code }}" is DOWN. Last ping was {{ check.last_ping|naturaltime }}.
{% else %} {% else %}
The check "{{ check.name_then_code }}" is now <b>UP</b>. The check "{{ check.name_then_code }}" is now UP.
{% endif %} {% endif %}