summaryrefslogtreecommitdiff
path: root/program/templates/boxes/broadcastformat.html
blob: c12e6351c494dbb0810ed05b79c9e245f81e8c65 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% if broadcastformats %}
    <dl id="broadcastformat" class="portlet">
        <dt class="portletHeader"><span>Legende</span></dt>
        {% for bf in broadcastformat_list %}
            <dd class="portletItem bcformat bf-{{ bf.slug }}">
                <a title="Sendungen mit dem Sendungsformat {{ bf.format }} anzeigen."
                   href="?broadcastformat={{ bf.slug }}">{{ bf.format }}</a>
            </dd>
        {% endfor %}
    </dl>
{% endif %}