Sendungen
{% for show in show_list %}
{% endfor %}
{% for showinformation in show.showinformation.all %}
{{ showinformation.abbrev }}
{% endfor %}
{% for showtopic in show.showtopic.all %}
{{ showtopic.abbrev }}
{% endfor %}
{% for musicfocus in show.musicfocus.all %}
{{ musicfocus.abbrev }}
{% endfor %}
{{ show.name }}
{% for slot in show.programslots.all %}
{% if show.short_description != 'FIXME' %}
{{ slot }}
{% endfor %}{{ show.short_description }}
{% endif %}