File diff acd2cef27674 → 70d6eb7140c7
www/podjango/urls.py
Show inline comments
...
 
@@ -39,7 +39,7 @@ info_dict = {
 
}
 

	
 
urlpatterns = [
 
    url(r'^$', frontpage.view),
 
    url(r'^$', frontpage.view, name='cast-home'),
 
    url(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', DateDetailView.as_view(**info_dict), name='detail'),
 
    url(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$', DayArchiveView.as_view(**info_dict), name='day-archive'),
 
    url(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', MonthArchiveView.as_view(**info_dict), name='month-archive'),