summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-11-24 14:33:04 -0500
committerTim Graham <timograham@gmail.com>2013-11-24 15:19:34 -0500
commitaf65860c5bc8f5efb76df9078284996cf55114f5 (patch)
tree94f19b9c2c5327dc533c83892867cf8a98316fff /docs
parent432de546113942be60089a879371073ad09fb4fe (diff)
[1.6.x] Fixed #21490 -- Fixed custom admin URL reverse example.
Thanks glarrain for the report. Backport of bfe7377adb from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/admin/index.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index b6e7a58807..4826bae690 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -2354,7 +2354,8 @@ that instance as a ``current_app`` hint to the reverse call. For example,
if you specifically wanted the admin view from the admin instance named
``custom``, you would need to call::
- >>> change_url = urlresolvers.reverse('custom:polls_choice_change', args=(c.id,))
+ >>> change_url = urlresolvers.reverse('custom:polls_choice_change',
+ ... args=(c.id,), current_app='custom')
For more details, see the documentation on :ref:`reversing namespaced URLs
<topics-http-reversing-url-namespaces>`.