diff options
-rw-r--r-- | program/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
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<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/$', DayScheduleView.as_view()), ('^(?P<year>\d{4})/(?P<week>\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<pk>\d+)/$', DetailView.as_view(model=Host), name='host-detail'), ('^recommendations/$', RecommendationsView.as_view()), |