Opened 10 years ago

Last modified 10 years ago

#24430 closed New feature

wildcard matching and reversing of URLs — at Version 1

Reported by: Anshuman Aggarwal Owned by: nobody
Component: Core (URLs) Version: 1.7
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Tim Graham)

Example:

urlpatterns += patterns('',
	(r'^\w+/', include(admin.site.urls),),
)

All links generated by the admin site with this url show a 'x'
for example : /x/<app_name>/<model_name>/

instead of the result of the matching wild card 'ABC' from ABC/<app_name>/<model_name>

the problem is that reverse can not know what to put in the wild card without having the path or the request as context.

Solution: add an optional parameter to reverse which is the request and the reverse can happen with the context of the request which is found acceptable in case the request parameter is not none.

Change History (1)

comment:1 by Tim Graham, 10 years ago

Description: modified (diff)

What's the use case for allowing the admin to be accessed at a wildcard URL?

Note: See TracTickets for help on using tickets.
Back to Top