diff --git a/templates/program/show_list.html b/templates/program/show_list.html index c527c096293439dc4ebd64a80ca71039e4b67f82..167a47035e0b4480f5af7e303bea89e464adea8c 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>