summaryrefslogtreecommitdiff
path: root/program/templates/show_detail.html
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <ernesto.rico-schmidt@evolaris.net>2016-08-20 19:26:32 (GMT)
committerErnesto Rico-Schmidt <ernesto.rico-schmidt@evolaris.net>2016-08-20 19:29:55 (GMT)
commita4e65be944763482155c224f62a1e6e3837d3833 (patch)
tree98fed43056d503662d2a3fdade006833c1e4704e /program/templates/show_detail.html
parent5288ea2ed358828635c7a9bbfc691a7b007cf5f6 (diff)
display only active program slots of a show.
Diffstat (limited to 'program/templates/show_detail.html')
-rw-r--r--program/templates/show_detail.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/templates/show_detail.html b/program/templates/show_detail.html
index 9fb9fb0..2e45549 100644
--- a/program/templates/show_detail.html
+++ b/program/templates/show_detail.html
@@ -13,7 +13,7 @@
<h1 id="name">{{ show.name }}</h1>
{% if show.id != 1 %}
<p id="programslots">
- {% for slot in show.programslots.all %}
+ {% for slot in show.active_programslots %}
<span class="programslot">{{ slot }}</span><br/>
{% endfor %}
</p>