#6962: admin/doc pages aren't handled by admin.site.root
--------------------------------------------------------+-------------------
Reporter: Karen Tracey <[EMAIL PROTECTED]> | Owner: nobody
Status: reopened | Milestone: 1.0
alpha
Component: Admin interface | Version:
newforms-admin
Resolution: | Keywords:
nfa-blocker
Stage: Ready for checkin | Has_patch: 1
Needs_docs: 0 | Needs_tests: 0
Needs_better_patch: 0 |
--------------------------------------------------------+-------------------
Changes (by shanx):
* status: closed => reopened
* resolution: wontfix =>
Comment:
I'm not sure if I can fully agree with this. There is in fact always a
coupling between the admin and the admindocs app, because you refer users
to the docs in the admin interface. The way it is solved now in #7466 is
that I'm forced to do this in the main urls.py file:
{{{
#!python
(r'^admin/doc/', include('django.contrib.admindocs.urls')),
}}}
While I may prefer to have the admindocs app be available on a different
url like so:
{{{
#!python
(r'^admin/documentation/', include('django.contrib.admindocs.urls')),
}}}
This is not possible the way it is fixed in #7466.
--
Ticket URL: <http://code.djangoproject.com/ticket/6962#comment:11>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---