{% extends "aircox/page_list.html" %} {% comment %}List of diffusions as a timetable{% endcomment %} {% load i18n aircox humanize %} {% block subtitle %}{{ date|date:"l d F Y" }}{% endblock %} {% block secondary-nav %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block list-container %}
{% with list_class="list-home" %} {{ block.super }} {% endwith %}

{% endblock %} {% block list %} {% with object_list=object_list timetable=True %} {% with widget|default:"item" as widget %} {% for object in object_list %} {% if object.episode %}
{% page_widget widget object.episode diffusion=object timetable=True %}
{% else %}
{% for obj in object %} {% include "aircox/widgets/track_item.html" with object=obj.track log=obj timetable=True %}
{% endfor %}
{% endif %} {% endfor %} {% endwith %} {% endwith %} {% endblock %}