diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-03-25 20:12:21 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-03-25 20:12:21 (GMT) |
commit | f20e6892956fd4e2e55a80efc92cc00721efca17 (patch) | |
tree | da0ac6464c54e10e58d5738a5c362cce0be2fb67 | |
parent | 9c6be4e8eed0162555e67228cf8a923f3e24135e (diff) |
changed url for the current view.
-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()), |