summaryrefslogtreecommitdiff
path: root/program/templates/boxes/showtopic.html
blob: 8561343f36ce7ffc59c8d3e232975e5fecd9f6d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% if showtopics %}
    <dl id="filterbox_showtopic" class="portlet filterbox">
        <dt class="portletHeader"><span>Thema / Schwerpunkt<span></dt>
        <dd class="portletItem">
            <ul>
                {% for showtopic in showtopic_list %}
                    <li>
                        <a title="Sendungen mit dem Schwerpunkt {{ showtopic.topic }} anzeigen."
                           class="abbrev st-{{ showtopic.abbrev }}"
                           href="?showtopic={{ showtopic.slug }}">{{ showtopic.topic }}</a>
                    </li>
                {% endfor %}
            </ul>
        </dd>
    </dl>
{% endif %}