Fixed #13329 -- Corrected markup problem with URL pattern in generic views docs. Thanks to LaundroMat for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13196 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
d73eb089f2
commit
95fea01041
|
@ -453,7 +453,7 @@ custom view:
|
|||
|
||||
urlpatterns = patterns('',
|
||||
#...
|
||||
**(r'^authors/(?P<author_id>\d+)/$', author_detail),**
|
||||
**(r'^authors/(?P<author_id>\\d+)/$', author_detail),**
|
||||
)
|
||||
|
||||
Then we'd write our wrapper function::
|
||||
|
|
Loading…
Reference in New Issue