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.
 
 
 
 
 

18 lines
502 B

{% load hc_extras %}
<table class="table">
{% for boundary, down_timedelta, count in downtimes reversed %}
<tr>
<th>{{ boundary|date:"N Y"}}</th>
<td>
{% if count %}
{{ count }} downtime{{ count|pluralize }},
{{ down_timedelta|hc_approx_duration }} total
{% elif count is None %}
{% else %}
All good!
{% endif %}
</td>
</tr>
{% endfor %}
</table>