{% load i18n passerelle tz gadjo %} {% if downtimes %} {% for record in downtimes %} {% endfor %}
{% trans 'Start date' %} {% trans 'End date' %} {% trans 'Duration' %} {% trans 'Error' %}
{{ record.start|localtime }} {% if record.end %} {{ record.end|localtime }} {% else %} {% trans "Down" %} {% endif %} {{ record.human_duration|default:"-" }} {{ record.message|default:"-" }}
{% with page_obj=downtimes_page anchor="#table-downtimes" page_key="down_page" %} {% if page_obj.has_next or page_obj.has_previous %} {% spaceless %}

{% if page_obj.number > 1 %} {% if page_obj.previous_page_number != 1 %} 1 … {% endif %} {% endif %} {% if page_obj.has_previous %} {{ page_obj.previous_page_number }} {% endif %} {{ page_obj.number }} {% if page_obj.has_next %} {{ page_obj.next_page_number }} … {% endif %}

{% endspaceless %} {% endif %} {% endwith %} {% else %}

{% trans 'No downtimes found' %}

{% endif %}