﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21490	Wrong example in docs for reversing Admin URLs using custom instance	German Larrain	nobody	"This example in the [https://docs.djangoproject.com/en/dev/ref/contrib/admin/#reversing-admin-urls docs]


{{{
change_url = urlresolvers.reverse('custom:polls_choice_change', args=(c.id,))
}}}


should be


{{{
change_url = urlresolvers.reverse('admin:polls_choice_change', args=(c.id,), current_app='custom')
}}}


The paragraph introducing the example is correct: ""If you want to find a URL in a specific admin instance, provide the name of that instance as a current_app hint to the reverse call"""	Bug	closed	contrib.admin	dev	Normal	fixed			Unreviewed	1	0	0	0	1	0
