{% extends "aircox_web/page.html" %} {% load i18n aircox_web %} {% block main %} {{ block.super }} {% blocktrans %}From {{ start }} to {{ end }}{% endblocktrans %} {% unique_id "timetable" as timetable_id %} < {% for day in by_date.keys %} {{ day|date:"D. d" }} {% endfor %} > {% for day, diffusions in by_date.items %} {{ day|date:"l d F Y" }} {% for object in diffusions %} {{ object.start|date:"H:i" }} - {{ object.end|date:"H:i" }} {% include "aircox_web/diffusion_item.html" %} {% endfor %} {% endfor %} {% endblock %}