diff -r a09d54338547 -r c8414e2b34ce project/urls.py --- a/project/urls.py Wed Nov 18 15:52:42 2009 +0530 +++ b/project/urls.py Mon Nov 23 12:01:22 2009 +0530 @@ -18,9 +18,7 @@ # Blog & Admin urlpatterns = patterns( '', - url(r'^$', - direct_to_template, {"template": "home.html"}, - name='home'), + url(r'^$', direct_to_template, {"template": "home.html"}, name='home'), (r'^feeds/(?P.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), (r'^comments/', include('django.contrib.comments.urls')), (r'^admin/(.*)', admin.site.root), @@ -32,6 +30,8 @@ url(r'^talks/talk/(?P\d+)/$', 'talk', name='talk_detail'), url(r'^submit-talk/$', 'submit_talk', name='kiwipycon_submit_talk'), url(r'^edit-talk/(?P\d+)/$', 'edit_talk', name='kiwipycon_edit_talk'), + url(r'^talks-cfp/list-talks/(?P\d+)/$', 'list_talks', + name='kiwipycon_list_talk'), ) # Registration