Fixed #1295 -- Fixed typo in generic views docs. Thanks, Matt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2319 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
186b5ccb34
commit
af33a72fb5
|
@ -40,7 +40,7 @@ drives the blog on djangoproject.com::
|
|||
}
|
||||
|
||||
urlpatterns = patterns('django.views.generic.date_based',
|
||||
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>\w+)/$', 'object_detail', dict(info_dict, slug_field='slug')),
|
||||
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'object_detail', dict(info_dict, slug_field='slug')),
|
||||
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/$', 'archive_day', info_dict),
|
||||
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'archive_month', info_dict),
|
||||
(r'^(?P<year>\d{4})/$', 'archive_year', info_dict),
|
||||
|
|
Loading…
Reference in New Issue