summaryrefslogtreecommitdiff
path: root/program/urls.py
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2014-05-01 21:43:18 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2014-05-01 21:43:18 (GMT)
commitbfcdf06fc0321f230fde9c542f793bd35dc6139b (patch)
treedae34c525ec17d70f4b759edbeb2521b41537b35 /program/urls.py
parentf2c4d866489a4aef845d7c422b98febf402472dc (diff)
added always_visible to the Hosts and updated template and URLs
Diffstat (limited to 'program/urls.py')
-rw-r--r--program/urls.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/program/urls.py b/program/urls.py
index fbdc037..d5af119 100644
--- a/program/urls.py
+++ b/program/urls.py
@@ -1,5 +1,6 @@
from django.conf import settings
from django.conf.urls.defaults import *
+from django.db.models import Q
from django.views.decorators.cache import cache_page
from django.views.generic.list_detail import object_detail, object_list
@@ -11,7 +12,8 @@ from datetime import date
hosts_dict = {
'queryset': Host.objects.filter(
- shows__programslots__until__gte=date.today()).distinct(),
+ Q(shows__programslots__until__gte=date.today()) |
+ Q(always_visible=True)).distinct(),
'template_object_name': 'host'
}
shows_dict = {