{% extends 'base.html' %} {% load extra %} {% block content %}

{{ service.name }}

{% if not checks %} No checks {% else %} {% for check in checks %}

{{ check.name }}

{% if check.success_rate != None %}

Success rate: {{ check.success_rate|floatformat:"2" }}%.

{% endif %} {% if check.problems %} {% for start_time, end_time, duration in check.problems %} {% endfor %}
Start time End time Outage duration
{{ start_time }} {% if end_time %}{{ end_time }}{% else %}-{% endif %} {{ duration|format_timedelta }}
{% endif %} {% endfor %} {% endif %} {% endblock content %}