{% for topic in show_topic_list %}
{{ topic.abbrev }} {{ topic }}
{% endfor %}
{% for information in show_information_list %}
{{ information.abbrev }} {{ information }}
{% endfor %}
{% for focus in music_focus_list %}
{{ focus.abbrev }} {{ focus }}
{% endfor %}
{% for show in show_list %}
{% for topic in show.show_topic.all %} {{ topic.abbrev }} {% endfor %} {% for information in show.show_information.all %} {{ information.abbrev }} {% endfor %} {% for focus in show.music_focus.all %} {{ focus.abbrev }} {% endfor %} {{ show.broadcast_format.abbrev }}
{% for slot in show.program_slots.all %}
{{ slot }}
{% endfor %}
{{ show.short_description }}
{% endfor %}
{% for format in broadcast_format_list %}
{{ format }}
{% endfor %}