Changes between Initial Version and Version 1 of Ticket #7662
- Timestamp:
- Jul 7, 2008, 4:03:25 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7662 – Description
initial v1 1 1 The reverser isn't handling this example of using a question mark properly: 2 2 3 {{{ 3 4 urlpatterns = patterns('', 4 5 url(r"([^/]+)/about/?$", project_about, name='project_about'), 5 6 ) 6 7 8 }}} 7 9 This causes: 10 11 {{{ 8 12 {% url project_about project %} 13 }}} 9 14 10 15 To return this: 16 17 {{{ 11 18 /nomination/project/about/? 19 }}}