﻿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
6962	admin/doc pages aren't handled by admin.site.root	Karen Tracey <kmtracey@…>	nobody	"newforms-admin branch page says to convert to newforms-admin change your urls.py to include:

{{{
urlpatterns = patterns('',
    ('^admin/(.*)', admin.site.root),
)
}}}

but admin.site.root doesn't handle the admin documentation pages that begin with admin/doc/, so the ""Documentation"" link at top right of every admin page results in a page not found error.  It's easy enough to fix if you include:

{{{
    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
}}}

in urls.py ahead of the more general admin spec, but given that that is not mentioned on the branch page I'm not sure if the intent is to have people do that or to have it be handled by admin.site.root. Personally I'd prefer a single-line addition to urls.py that makes the entire admin site work, not multiple lines, so I'd rather admin.site.root be changed to handle these versus updating the transition doc."		closed	contrib.admin	newforms-admin		wontfix	nfa-blocker	v.oostveen@… cmawebsite@…	Ready for checkin	1	0	0	0	0	0
