{% extends "aircox/page.html" %} {% load i18n aircox %} {% block title %}{% trans "Timetable" %}{% endblock %} {% 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 %} > {% with True as hide_schedule %} {% for day, diffusions in by_date.items %} {{ day|date:"l d F Y" }} {% for diffusion in diffusions %} {{ diffusion.start|date:"H:i" }} - {{ diffusion.end|date:"H:i" }} {% with diffusion.episode as object %} {% include "aircox/episode_item.html" %} {% endwith %} {% endfor %} {% endfor %} {% endwith %} {% endblock %}