diff options
author | Ernesto Rico-Schmidt <ernesto.rico-schmidt@evolaris.net> | 2016-08-17 17:00:51 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <ernesto.rico-schmidt@evolaris.net> | 2016-08-17 17:00:51 (GMT) |
commit | 8cc0a1dae3ded38934e2f33e169e01d101d1b577 (patch) | |
tree | 48f5a3c1d1ed52eaede8869398196645517452a3 /program/templates/show_list.html | |
parent | 6990ff7f88f827d7193cb5ddef0be22546bccd23 (diff) |
removed is_active from Host, Show and ProgramSlot.
Diffstat (limited to 'program/templates/show_list.html')
-rw-r--r-- | program/templates/show_list.html | 4 |
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> |