{% extends "aircox/page_list.html" %} {% comment %}List of diffusions as a timetable{% endcomment %} {% load i18n aircox humanize %} {% block title %} {% if not page or not page.title %} {% with station.name as station %} {% blocktrans %}This week on {{ station }}{% endblocktrans %} {% endwith %} {% else %} {{ block.super }} {% endif %} {% endblock %} {% block subtitle %}{{ date|date:"l d F Y" }}{% endblock %} {% block before_list %} {% with "diffusion-list" as url_name %} {% include "aircox/widgets/dates_menu.html" %} {% endwith %} {% endblock %} {% block pages_list %} {% with hide_schedule=True %}
{% for diffusion in object_list %}
{% with diffusion.episode as object %} {% include "aircox/widgets/episode_item.html" %} {% endwith %}
{% endfor %}
{% endwith %} {% endblock %}