summaryrefslogtreecommitdiff
path: root/program/templates/host_detail.html
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2016-08-17 22:03:32 (GMT)
committerGitHub <noreply@github.com>2016-08-17 22:03:32 (GMT)
commit0c2a864cc58acf436d49a09877ca55dd2c3b4fc4 (patch)
treea92f0f3ccdc212f34bc67db43e7fb5f2da8f5075 /program/templates/host_detail.html
parent6990ff7f88f827d7193cb5ddef0be22546bccd23 (diff)
parent8531fd1756b37cf4c5d7c14d22dc9fb5057e0e74 (diff)
Merge pull request #3 from radio-helsinki-graz/recognize_activity
Recognize activity
Diffstat (limited to 'program/templates/host_detail.html')
-rw-r--r--program/templates/host_detail.html7
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>