summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-04-07 20:53:08 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-04-07 20:53:08 (GMT)
commit48f14f2ee127a3a6aa3368a8284bc87a84fa51be (patch)
treeac09d0c64f106e29d6f793f2ff3d3e62f0207fc4
parent63473ea33ebb89777d9ee0b4be2bc3163761678c (diff)
add two - currently unimplemented - urls
-rw-r--r--helsinki/program/urls_program.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/helsinki/program/urls_program.py b/helsinki/program/urls_program.py
index e2d8ae8..e310b43 100644
--- a/helsinki/program/urls_program.py
+++ b/helsinki/program/urls_program.py
@@ -17,4 +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'),
+ # TODO: implement
+ ('^/week/$', today_schedule),
+ ('^/topics/$', recommendations),
)