#31848: Support namespaced django.contrib.admindocs views.
-------------------------------------+-------------------------------------
Reporter: Marcelo Cardoso | Owner: nobody
Type: New feature | Status: closed
Component: contrib.admindocs | Version: master
Severity: Normal | Resolution: wontfix
Keywords: admindocs, | Triage Stage:
namespaces | Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+-------------------------------------
Changes (by felixxm):
* resolution: needsinfo => wontfix
Comment:
Yes, so I don't think it's worth backward incompatible change that will
force other users (that use `admindocs` in custom pages) to update their
URLs. You can always force namespaced views with:
{{{
urlpatterns = [
...,
path('admin/doc/',include((django.contrib.admindocs.urls.urlpatterns,
'admindocs'), namespace='docs'))
...,
]
}}}
if it's really important to you.
--
Ticket URL: <https://code.djangoproject.com/ticket/31848#comment:3>
Django <https://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 unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/074.42ddcecd6dd1637caaa99b197845f3b5%40djangoproject.com.