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.

17 lines
502 B

  1. {% load hc_extras %}
  2. <table class="table">
  3. {% for boundary, down_timedelta, count in downtimes reversed %}
  4. <tr>
  5. <th>{{ boundary|date:"N Y"}}</th>
  6. <td>
  7. {% if count %}
  8. {{ count }} downtime{{ count|pluralize }},
  9. {{ down_timedelta|hc_approx_duration }} total
  10. {% elif count is None %}
  11. {% else %}
  12. All good!
  13. {% endif %}
  14. </td>
  15. </tr>
  16. {% endfor %}
  17. </table>