diff options
Diffstat (limited to 'templates/program')
-rw-r--r-- | templates/program/show_detail.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/program/show_detail.html b/templates/program/show_detail.html index b5c5f91..8337155 100644 --- a/templates/program/show_detail.html +++ b/templates/program/show_detail.html @@ -14,7 +14,9 @@ {% if show.id != 1 %} <p id="programslots"> {% for slot in show.programslots.all %} - <span class="programslot">{{ slot }}</span><br /> + {% if slot.has_active_timeslot %} + <span class="programslot">{{ slot }}</span><br /> + {% endif %} {% endfor %} </p> {% endif %} |