From a4e65be944763482155c224f62a1e6e3837d3833 Mon Sep 17 00:00:00 2001 From: Ernesto Rico-Schmidt <ernesto.rico-schmidt@evolaris.net> Date: Sat, 20 Aug 2016 21:26:32 +0200 Subject: [PATCH] display only active program slots of a show. --- program/templates/show_detail.html | 2 +- program/templates/show_list.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/program/templates/show_detail.html b/program/templates/show_detail.html index 9fb9fb0c..2e45549b 100644 --- a/program/templates/show_detail.html +++ b/program/templates/show_detail.html @@ -13,7 +13,7 @@ <h1 id="name">{{ show.name }}</h1> {% if show.id != 1 %} <p id="programslots"> - {% for slot in show.programslots.all %} + {% for slot in show.active_programslots %} <span class="programslot">{{ slot }}</span><br/> {% endfor %} </p> diff --git a/program/templates/show_list.html b/program/templates/show_list.html index 96ea4975..d9b9a479 100644 --- a/program/templates/show_list.html +++ b/program/templates/show_list.html @@ -40,7 +40,7 @@ <div class="show-detail"> <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 %} + {% for programslot in show.active_program_slots %} <li class="show-programslot">{{ programslot }}</li> {% endfor %} </ul> -- GitLab