summaryrefslogtreecommitdiff
path: root/helsinki/program/urls_program.py
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-04-08 21:12:00 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-04-08 21:12:00 (GMT)
commitde060aca81bf86472d37b8fc157e2984ec8ce791 (patch)
tree13a042e6eb6eed1f3fbd42ed7117f91727ab87b9 /helsinki/program/urls_program.py
parent41d65a62e0d9ebb6e64661ac9ac014d5aa71c85c (diff)
optimizations
Diffstat (limited to 'helsinki/program/urls_program.py')
-rw-r--r--helsinki/program/urls_program.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/helsinki/program/urls_program.py b/helsinki/program/urls_program.py
index f68d376..6f4ae3a 100644
--- a/helsinki/program/urls_program.py
+++ b/helsinki/program/urls_program.py
@@ -3,7 +3,7 @@ from django.conf.urls.defaults import *
from django.views.generic.list_detail import object_detail, object_list
from models import Host, Show, TimeSlot
-from views import current_show, day_schedule, recommendations, show_list, today_schedule, week_schedule
+from views import current_show, day_schedule, recommendations, show_list, today_schedule, week_schedule, bcformats
urlpatterns = patterns('',
('^/today/?$', today_schedule),
@@ -17,6 +17,7 @@ urlpatterns = patterns('',
('^/shows/?$', show_list),
url('^/shows/(?P<slug>[\w-]+)/?$', object_detail, dict(template_object_name='show', queryset=Show.objects.all()), name='show-detail'),
url('^/(?P<object_id>\d+)/?$', object_detail, dict(template_object_name='timeslot', queryset=TimeSlot.objects.all()), name='timeslot-detail'),
+ ('^/bcformats_box/?$', bcformats),
# TODO: implement
('^/week/?$', today_schedule),
('^/topics/?$', recommendations),