diff --git a/program/templates/host_detail.html b/program/templates/host_detail.html index 87a4c12d79696e2ed1cd2c54872e8a17a100010b..e7aad16a69af70811a5e5d228ed999cbfd5c154d 100644 --- a/program/templates/host_detail.html +++ b/program/templates/host_detail.html @@ -9,8 +9,8 @@ <div id="shows"> <div id="shows-title">Sendungen</div> - {% for show in host.shows.all %} - <div class="show {{ show.broadcastformat.slug }}">{{ show }}</div> + {% for show in host.active_shows %} + <div class="show {{ show.broadcastformat.slug }}"><a href="{% url "show-detail" show.slug %}"> {{ show.name }}</a></div> {% endfor %} </div>