{% include "head.html" %} {% include "navbar.html" %}
{% for status in status_list %}
{{ status.service }}
{{ status.status }}
{% if status.info_text %} {{ status.info_text }} {% else %} No extra info {% endif %}
{% if status.timestamp == 0 %} Service never reported in {% else %} {{ datetime.fromtimestamp(status.timestamp).strftime("%H:%M on %d.%b.%y") }} {% endif %}
{% endfor %}