summaryrefslogtreecommitdiff
path: root/program/views.py
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2016-05-01 16:14:58 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2016-05-01 16:14:58 (GMT)
commit9dee37ef6176affc4fae32d3e0e90de7060f8246 (patch)
tree6c0556ab32b06c99b842d69c9e590e32674dcddc /program/views.py
parent094aa869116847d7941ab6fbf18b176dec1665d1 (diff)
Link to predecessor show.
Diffstat (limited to 'program/views.py')
-rw-r--r--program/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/views.py b/program/views.py
index eaba951..5dc82dd 100644
--- a/program/views.py
+++ b/program/views.py
@@ -50,7 +50,7 @@ class ShowListView(ListView):
class ShowDetailView(DetailView):
- queryset = Show.objects.filter(is_active=True).exclude(id=1).distinct()
+ queryset = Show.objects.all().exclude(id=1)
template_name = 'show_detail.html'