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 Version 1

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 (last modified by Adrian Holovaty)

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 (1)

comment:1 by Adrian Holovaty, 19 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top