blob: 52c40e0f8384fd52d9822337aa5c4b4d38d200cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% if showinformations %}
<dl id="filterbox_showinformation" class="portlet filterbox">
<dt class="portletHeader"><span>Sendungsinfo<span></dt>
<dd class="portletItem">
<ul>
{% for si in showinformation_list %}
<li>
<a title="Sendungen mit der Information {{ si.information }} anzeigen."
class="abbrev si-{{ si.abbrev }}"
href="?showinformation={{ si.slug }}">{{ si.information }}</a>
</li>
{% endfor %}
</ul>
</dd>
</dl>
{% endif %}
|