Skip to content
Snippets Groups Projects
Commit 5288ea2e authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

display only active shows of a host.

parent 4d830b21
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment