{% extends "aircox/page_detail.html" %}
{% comment %}Detail page of a show{% endcomment %}
{% load i18n %}
{% include "aircox/program_sidebar.html" %}
{% block header_nav %}
{% endblock %}
{% block content %}
{{ block.super }}
{% with has_headline=False %}
{% if articles %}
{% translate "Articles" %}
{% for object in articles %}
{% include "aircox/widgets/page_item.html" %}
{% endfor %}
{% endif %}
{% endwith %}
{% endblock %}
{% block sidebar %}
{% translate "Diffusions" %}
{% for schedule in program.schedule_set.all %}
{{ schedule.get_frequency_verbose }}
{% with schedule.start|date:"H:i" as start %}
{% with schedule.end|date:"H:i" as end %}
—
{% endwith %}
{% endwith %}
{% if schedule.initial %}
{% with schedule.initial.date as date %}
({% translate "Rerun" %})
{% endwith %}
{% endif %}
{% endfor %}
{{ block.super }}
{% endblock %}