Changes between Initial Version and Version 1 of Ticket #24430
- Timestamp:
- Mar 2, 2015, 12:36:44 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24430 – Description
initial v1 1 1 Example: 2 {{{ 2 3 urlpatterns += patterns('', 3 4 (r'^\w+/', include(admin.site.urls),), 4 5 ) 6 }}} 7 All links generated by the admin site with this url show a 'x' 8 for example : `/x/<app_name>/<model_name>/` 5 9 6 All links generated by the admin site with this url show a 'x' 7 for example 8 /x/<app_name>/<model_name>/ 9 10 instead of the result of the matching wild card 'ABC' from ABC/<app_name>/<model_name> 10 instead of the result of the matching wild card 'ABC' from `ABC/<app_name>/<model_name>` 11 11 12 12 the problem is that reverse can not know what to put in the wild card without having the path or the request as context.