{% extends "aircox/page.html" %} {% comment %}List of diffusions as a timetable{% endcomment %} {% load i18n aircox humanize %} {% block title %} {% with station.name as station %} {% blocktrans %}Today on {{ station }}{% endblocktrans %} {% endwith %} {% endblock %} {% block subtitle %}{{ date|date:"l d F Y" }}{% endblock %} {% block filters %} {% with "diffusion-list" as url_name %} {% include "aircox/widgets/dates_menu.html" %} {% endwith %} {% endblock %} {% block main %}{{ block.super }} {% with hide_schedule=True %}
{% for diffusion in object_list %} {# FIXME: opacity should work -- maybe hidden tz #}
{% with diffusion.episode as object %} {% include "aircox/widgets/episode_item.html" %} {% endwith %}
{% endfor %}
{% endwith %} {% comment %} {% endcomment %} {% endblock %}