diff options
Diffstat (limited to 'program/templates/show_list.html')
-rw-r--r-- | program/templates/show_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/templates/show_list.html b/program/templates/show_list.html index 96ea497..d9b9a47 100644 --- a/program/templates/show_list.html +++ b/program/templates/show_list.html @@ -40,7 +40,7 @@ <div class="show-detail"> <h3 class="show-title"><a href="{% url "show-detail" show.slug %}">{{ show.name }}</a></h3> <ul class="show-programslots"> - {% for programslot in show.programslots.all %} + {% for programslot in show.active_program_slots %} <li class="show-programslot">{{ programslot }}</li> {% endfor %} </ul> |