{{ show.name }}
{% if show.id != 1 %}
{% for slot in show.active_programslots %}
{{ slot }}
{% endfor %}
{% for si in show.showinformation.all %}
{{ si.abbrev }}
{% endfor %}
{% for st in show.showtopic.all %}
{{ st.abbrev }}
{% endfor %}
{% for mf in show.musicfocus.all %}
{{ mf.abbrev }}
{% endfor %}
{% for lang in show.language.all %}
{{ lang.slug }}
{% endfor %}
{{ show.broadcastformat.format }}
{{ show.short_description }}
{% if show.description %}
{{ show.description|safe }}
{% endif %}
{% if show.image and show.image_enabled %}
{% endif %}
{% for host in show.hosts.all %}
{{ host }}
{% endfor %}
{% if show.email %}
Email: {{ show.email }}
{% endif %}
{% if show.website %}
Website: {{ show.website }}
{% endif %}
Sendungstipps
-
{% for note in show.notes.all reversed %}
-
{{ note.start|date:"d. M Y" }}:
{{ note.title }}
{% endfor %}
{% if show.predecessor and show.predecessor.notes.all %}
{% if show.name != show.predecessor.name %}
-
{{ note.start|date:"d. M Y" }}:
{{ note.title }}
{% endfor %}
{% endif %}