Changes between Initial Version and Version 2 of Ticket #4075
- Timestamp:
- Apr 28, 2007, 12:08:27 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4075
- Property Triage Stage Unreviewed → Accepted
-
Ticket #4075 – Description
initial v2 1 1 The template tag 2 3 "{% url example_edit %}" 4 2 {{{ 3 {% url example_edit %} 4 }}} 5 5 produces 6 7 "http://localhost:8000/wiki/example/add/?" 8 6 {{{ 7 http://localhost:8000/wiki/example/add/? 8 }}} 9 9 for the urls.py entry 10 11 "url(r'^wiki/example/add/?$', example_edit, name="example_edit") 12 10 {{{ 11 #!python 12 url(r'^wiki/example/add/?$', example_edit, name="example_edit") 13 }}} 13 14 it should produce 14 15 "http://localhost:8000/wiki/example/add/" 16 15 {{{ 16 http://localhost:8000/wiki/example/add/ 17 }}} 17 18 since the '?' is a regex operator in this context.