Changes between Initial Version and Version 2 of Ticket #4075


Ignore:
Timestamp:
Apr 28, 2007, 12:08:27 PM (17 years ago)
Author:
Malcolm Tredinnick
Comment:

Fixed summary formatting.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4075

    • Property Triage Stage UnreviewedAccepted
  • Ticket #4075 – Description

    initial v2  
    11The template tag
    2 
    3 "{% url example_edit %}"
    4 
     2{{{
     3{% url example_edit %}
     4}}}
    55produces
    6 
    7 "http://localhost:8000/wiki/example/add/?"
    8 
     6{{{
     7http://localhost:8000/wiki/example/add/?
     8}}}
    99for the urls.py entry
    10 
    11 "url(r'^wiki/example/add/?$', example_edit, name="example_edit")
    12 
     10{{{
     11#!python
     12url(r'^wiki/example/add/?$', example_edit, name="example_edit")
     13}}}
    1314it should produce
    14 
    15 "http://localhost:8000/wiki/example/add/"
    16 
     15{{{
     16http://localhost:8000/wiki/example/add/
     17}}}
    1718since the '?' is a regex operator in this context.
Back to Top