summaryrefslogtreecommitdiff
path: root/helsinki/program/templates/program/box_showinformation.html
diff options
context:
space:
mode:
Diffstat (limited to 'helsinki/program/templates/program/box_showinformation.html')
-rw-r--r--helsinki/program/templates/program/box_showinformation.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/helsinki/program/templates/program/box_showinformation.html b/helsinki/program/templates/program/box_showinformation.html
index deef73c..20c4ba6 100644
--- a/helsinki/program/templates/program/box_showinformation.html
+++ b/helsinki/program/templates/program/box_showinformation.html
@@ -1,10 +1,14 @@
{% if showinformations %}
<dl id="box_showinformation" class="portlet">
<dt class="portletHeader"><span>Schwerpunkt<span></dt>
- {% for item in showinformations %}
- <dd class="portletItem showinformation mf-{{ item.abbrev }}">
- <a href="?showinformation={{ item.slug }}">{{ item }}</a>
+ <dd class="portletItem">
+ <ul>
+ {% for item in showinformations %}
+ <li class="si-{{ item.abbrev }}">
+ <a href="?showinformation={{ item.slug }}">{{ item }}</a>
+ </li>
+ {% endfor %}
+ </ul>
</dd>
- {% endfor %}
</dl>
{% endif %}