mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-23 07:57:39 +00:00
21 lines
581 B
HTML
21 lines
581 B
HTML
{% load hc_extras tz %}
|
||
{% timezone tz %}
|
||
<table id="downtimes" class="table">
|
||
{% for d in downtimes %}
|
||
<tr>
|
||
<th>{{ d.boundary|date:"N Y"}}</th>
|
||
<td>
|
||
{% if d.no_data %}
|
||
–
|
||
{% elif d.count %}
|
||
{{ d.count }} downtime{{ d.count|pluralize }}, {{ d.duration|hc_approx_duration }} total
|
||
<span class="uptime">{{ d.monthly_uptime|pct }}% uptime</span>
|
||
{% else %}
|
||
All good!
|
||
{% endif %}
|
||
</td>
|
||
</tr>
|
||
{% endfor %}
|
||
</table>
|
||
{% endtimezone %}
|