From bfe7377adbc0d10dc553a317671c193dce692ad3 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sun, 24 Nov 2013 14:33:04 -0500 Subject: [PATCH] Fixed #21490 -- Fixed custom admin URL reverse example. Thanks glarrain for the report. --- docs/ref/contrib/admin/index.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 79faaf9e6c..93476325af 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -2522,7 +2522,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 `.