summaryrefslogtreecommitdiff
path: root/helsinki/program/urls_program.py
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-04-11 10:53:41 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-04-11 10:53:41 (GMT)
commit6366aa1a3212c2358ee6e0e38d20c725a79193f3 (patch)
treed948b2d74c8ac2ccb27e87ee4fecc9a5c7de1afc /helsinki/program/urls_program.py
parent1eac93fabf853226cb0218cedec09106470a543b (diff)
for broadcastformats box, use the new template tag
Diffstat (limited to 'helsinki/program/urls_program.py')
-rw-r--r--helsinki/program/urls_program.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/helsinki/program/urls_program.py b/helsinki/program/urls_program.py
index 5462e10..a93db83 100644
--- a/helsinki/program/urls_program.py
+++ b/helsinki/program/urls_program.py
@@ -17,11 +17,6 @@ timeslot_dict = {
'queryset': TimeSlot.objects.all(),
'template_object_name': 'timeslot'
}
-broadcastformart_dict = {
- 'queryset': BroadcastFormat.objects.all(),
- 'template_name': 'program/broadcastformats_box.html',
- 'template_object_name': 'broadcastformat'
-}
recommendation_dict = {'template_name': 'program/recommendations_box.html'}
urlpatterns = patterns('',
@@ -36,6 +31,5 @@ urlpatterns = patterns('',
(r'^shows/?$', show_list),
url(r'^shows/(?P<slug>[\w-]+)/?$', object_detail, show_dict, name='show-detail'),
url(r'^(?P<object_id>\d+)/?$', object_detail, timeslot_dict, name='timeslot-detail'),
- (r'^broadcastformats_box/?$', object_list, broadcastformart_dict,),
(r'^week/?$', week_schedule)
)