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/host_detail.html | |
parent | 6990ff7f88f827d7193cb5ddef0be22546bccd23 (diff) |
removed is_active from Host, Show and ProgramSlot.
Diffstat (limited to 'program/templates/host_detail.html')
-rw-r--r-- | program/templates/host_detail.html | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/program/templates/host_detail.html b/program/templates/host_detail.html index 73182d6..87a4c12 100644 --- a/program/templates/host_detail.html +++ b/program/templates/host_detail.html @@ -10,12 +10,7 @@ <div id="shows"> <div id="shows-title">Sendungen</div> {% for show in host.shows.all %} - {% if show.is_active %} - <div class="show {{ show.broadcastformat.slug }}"><a - href="{% url "show-detail" show.slug %}">{{ show }}</a></div> - {% else %} - <div class="show {{ show.broadcastformat.slug }}">{{ show }}</div> - {% endif %} + <div class="show {{ show.broadcastformat.slug }}">{{ show }}</div> {% endfor %} </div> |