summaryrefslogtreecommitdiff
path: root/program/templates/show_list.html
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <ernesto.rico-schmidt@evolaris.net>2016-08-17 17:00:51 (GMT)
committerErnesto Rico-Schmidt <ernesto.rico-schmidt@evolaris.net>2016-08-17 17:00:51 (GMT)
commit8cc0a1dae3ded38934e2f33e169e01d101d1b577 (patch)
tree48f5a3c1d1ed52eaede8869398196645517452a3 /program/templates/show_list.html
parent6990ff7f88f827d7193cb5ddef0be22546bccd23 (diff)
removed is_active from Host, Show and ProgramSlot.
Diffstat (limited to 'program/templates/show_list.html')
-rw-r--r--program/templates/show_list.html4
1 files changed, 1 insertions, 3 deletions
diff --git a/program/templates/show_list.html b/program/templates/show_list.html
index 62594e9..96ea497 100644
--- a/program/templates/show_list.html
+++ b/program/templates/show_list.html
@@ -41,9 +41,7 @@
<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 %}
- {% if programslot.is_active %}
- <li class="show-programslot">{{ programslot }}</li>
- {% endif %}
+ <li class="show-programslot">{{ programslot }}</li>
{% endfor %}
</ul>
<p class="show-description">{{ show.short_description }}</p>