blob: dbbe60dfc09f72304fa408d90d02702eb735f7cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% if showinformation_list %}
<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 %}
|