{% extends "aircox_web/page.html" %} {% load i18n aircox_web %} {% block main %} {{ block.super }} {% for object in object_list %} {{ object.start|date:"d M, H:i" }} {% include "aircox_web/diffusion_item.html" %} {% endfor %} {% if is_paginated %} {% if page_obj.has_previous %} {% trans "Previous" %} {% endif %} {% if page_obj.has_next %} {% trans "Next" %} {% endif %} {% for i in paginator.page_range %} {{ i }} {% endfor %} {% endif %} {% endblock %}