{% for recommendation in recommendations %}
{{ recommendation.timeslot.start|date:"H:i" }}
{{ recommendation.timeslot.programslot.show.name }}
{{ recommendation.title }}
{% endfor %}
{% for timeslot in timeslots %}
{{ timeslot.start|date:"H:i" }}
{% for showinformation in timeslot.programslot.show.showinformation.all %} {{ showinformation.abbrev }} {% endfor %}
{% for showtopic in timeslot.programslot.show.showtopic.all %} {{ showtopic.abbrev }} {% endfor %}
{% for musicfocus in timeslot.programslot.show.musicfocus.all %} {{ musicfocus.abbrev }} {% endfor %}
{{ timeslot.show }}
{% if timeslot.note %}
Heute: {{ timeslot.note.title }}
{% endif %}
{% endfor %}
{% for broadcastformat in broadcastformats %}
{{ broadcastformat }}
{% endfor %}