summaryrefslogtreecommitdiff
path: root/templates/program/show_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/program/show_list.html')
-rw-r--r--templates/program/show_list.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/program/show_list.html b/templates/program/show_list.html
index 4303929..bb5b070 100644
--- a/templates/program/show_list.html
+++ b/templates/program/show_list.html
@@ -36,11 +36,11 @@
</div>
<div class="show-detail">
<h3 class="show-title"><a href="{% url show-detail show.slug %}">{{ show.name }}</a></h3>
- <div class="show-programslots">
+ <ul class="show-programslots">
{% for slot in show.programslots.all %}
- <p class="show-programslot">{{ slot }}</p>
+ <li class="show-programslot">{{ slot }}</li>
{% endfor %}
- </div>
+ </ul>
{% if show.short_description != 'FIXME' %}
<p class="show-description">{{ show.short_description }}</p>
{% endif %}