{% extends "aircox/page_detail.html" %} {% comment %}Detail page of a show{% endcomment %} {% load i18n aircox %} {% block content %} {% with schedules=object.schedule_set.all %} {% if object.active and schedules %}
{% for schedule in schedules %}
{{ schedule.get_frequency_display }} {% with schedule.start|date:"H:i" as start %} {% with schedule.end|date:"H:i" as end %} {% endwith %} {% endwith %} {% if schedule.is_rerun %} {% with schedule.initial.date as date %} ({% translate "Rerun" %}) {% endwith %} {% endif %}
{% endfor %}
{% endif %} {% endwith %} {{ block.super }} {% endblock %} {% block episodes %} {% if episodes %}

{% translate "Last Episodes" %}

{% include "./widgets/carousel.html" with objects=episodes url_name="episode-list" url_parent=object url_label=_("All episodes") %}
{% endif %} {% endblock %} {% block main %} {{ block.super }} {% if articles %}

{% translate "Last Articles" %}

{% include "./widgets/carousel.html" with objects=articles url_name="article-list" url_parent=object url_label=_("All articles") %}
{% endif %} {% endblock %}