Fixed #21582 -- Corrected URL namespace example.
Thanks oubiga for the report.
This commit is contained in:
parent
6e3ca6507c
commit
025ec2e7fe
|
@ -866,7 +866,7 @@ For example::
|
||||||
url(r'^advanced/$', 'apps.help.views.views.advanced'),
|
url(r'^advanced/$', 'apps.help.views.views.advanced'),
|
||||||
)
|
)
|
||||||
|
|
||||||
url(r'^help/', include(help_patterns, 'bar', 'foo')),
|
url(r'^help/', include((help_patterns, 'bar', 'foo'))),
|
||||||
|
|
||||||
This will include the nominated URL patterns into the given application and
|
This will include the nominated URL patterns into the given application and
|
||||||
instance namespace.
|
instance namespace.
|
||||||
|
@ -877,3 +877,8 @@ attribute: A 3-tuple that contains all the patterns in the corresponding admin
|
||||||
site, plus the application namespace ``'admin'``, and the name of the admin
|
site, plus the application namespace ``'admin'``, and the name of the admin
|
||||||
instance. It is this ``urls`` attribute that you ``include()`` into your
|
instance. It is this ``urls`` attribute that you ``include()`` into your
|
||||||
projects ``urlpatterns`` when you deploy an Admin instance.
|
projects ``urlpatterns`` when you deploy an Admin instance.
|
||||||
|
|
||||||
|
Be sure to pass a tuple to ``include()``. If you simply pass three arguments:
|
||||||
|
``include(help_patterns, 'bar', 'foo')``, Django won't throw an error but due
|
||||||
|
to the signature of ``include()``, ``'bar'`` will be the instance namespace and
|
||||||
|
``'foo'`` will be the application namespace instead of vice versa.
|
||||||
|
|
Loading…
Reference in New Issue