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.

15 lines
431 B

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