{% extends "aircox/program_base.html" %} {% load i18n %} {% block header %}{{ block.super }}
{% for diffusion in object.diffusion_set.all %} {% with diffusion.start as start %} {% with diffusion.end as end %} {% endwith %} {% endwith %} {% if diffusion.initial %} {% with diffusion.initial.date as date %} ({% trans "rerun" %}) {% endwith %} {% endif %}
{% endfor %}
{% endblock %} {% block content %}{{ block.super }} {% if podcasts or tracks %}
{% if tracks %}

{% trans "Playlist" %}

    {% for track in tracks %}
  1. {{ track.title }} — {{ track.artist }} {% if track.info %}({{ track.info }}){% endif %}
  2. {% endfor %}
{% endif %} {% if podcasts %}

{% trans "Podcasts" %}

{% for object in podcasts %} {% include "aircox/widgets/podcast_item.html" %} {% endfor %}
{% endif %}
{% endif %} {% endblock %}