Opened 19 years ago

Last modified 18 years ago

#131 closed defect

Included URL configurations do not receive parameters parsed from parent URL configurations — at Initial Version

Reported by: jcernelli@… Owned by: Adrian Holovaty
Component: Core (Other) Version:
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

Example:

settings/urls/main.py
(r'(?P<username>\w+)/blog/', include('fiji.apps.blog.urls.blog')),

apps/blog/urls/blog.py
(r, 'blog.index'),

In this case, the username parameter caught by the main conf file does not get passed to the blog conf file, which is desired.

Change History (0)

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