diff options
Diffstat (limited to 'templates/program/show_list.html')
-rw-r--r-- | templates/program/show_list.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/program/show_list.html b/templates/program/show_list.html index c527c09..167a470 100644 --- a/templates/program/show_list.html +++ b/templates/program/show_list.html @@ -38,7 +38,9 @@ <h3 class="show-title"><a href="{% url show-detail show.slug %}">{{ show.name }}</a></h3> <ul class="show-programslots"> {% for slot in show.programslots.all %} + {% if slot.has_active_timeslot %} <li class="show-programslot">{{ slot }}</li> + {% endif %} {% endfor %} </ul> <p class="show-description">{{ show.short_description }}</p> |