From f20e6892956fd4e2e55a80efc92cc00721efca17 Mon Sep 17 00:00:00 2001 From: Ernesto Rico-Schmidt Date: Fri, 25 Mar 2011 21:12:21 +0100 Subject: changed url for the current view. diff --git a/program/urls.py b/program/urls.py index 6e7da79..637ad97 100644 --- a/program/urls.py +++ b/program/urls.py @@ -9,7 +9,7 @@ urlpatterns = patterns('', ('^$', TodayScheduleView.as_view()), ('^(?P\d{4})/(?P\d{1,2})/(?P\d{1,2})/$', DayScheduleView.as_view()), ('^(?P\d{4})/(?P\d{1,2})/$', WeekScheduleView.as_view()), - ('^current/$', CurrentShowView.as_view()), + ('^current_box/$', CurrentShowView.as_view()), ('^hosts/$', ListView.as_view(model=Host, context_object_name='hosts')), url('^host/(?P\d+)/$', DetailView.as_view(model=Host), name='host-detail'), ('^recommendations/$', RecommendationsView.as_view()), -- cgit v0.10.2