Changes between Initial Version and Version 1 of Ticket #7662


Ignore:
Timestamp:
Jul 7, 2008, 4:03:25 PM (16 years ago)
Author:
Jacob
Comment:

(Fixed formatting. Preview is your friend!)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7662 – Description

    initial v1  
    11The reverser isn't handling this example of using a question mark properly:
    22
     3{{{
    34urlpatterns = patterns('',
    45    url(r"([^/]+)/about/?$", project_about, name='project_about'),
    56)
    67
     8}}}
    79This causes:
     10
     11{{{
    812{% url project_about project %}
     13}}}
    914
    1015To return this:
     16
     17{{{
    1118/nomination/project/about/?
     19}}}
Back to Top