Changes between Initial Version and Version 1 of Ticket #131
- Timestamp:
- Jul 20, 2005, 10:47:14 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #131 – Description
initial v1 1 1 Example: 2 2 3 {{{ 3 4 settings/urls/main.py 4 5 (r'^(?P<username>\w+)/blog/', include('fiji.apps.blog.urls.blog')), … … 6 7 apps/blog/urls/blog.py 7 8 (r'', 'blog.index'), 9 }}} 8 10 9 11 In this case, the username parameter caught by the main conf file does not get passed to the blog conf file, which is desired.