-
{% with day.cells as cells %}
{% regroup cells by datetime|date:"H:i" as time_list %}
{% if time_list %}
{% for cell in time_list %}
-
{{ cell.grouper }}{% for cell in cell.list %} {% if cell.episode %} {% with cell.episode as episode %}{% episode_resume model="inline" klass="standalone" date=False %}{% endwith %} {% elif cell.emission %} {% with cell.emission as emission %}{% emission_resume %}{% endwith %} {% else %} {{ cell.label }} {% endif %} {% endfor %}
{% endfor %}
{% else %}
- Non stop only!
{% endif %}
{% endwith %}