Ticket #5198: url_dispatch.diff

File url_dispatch.diff, 869 bytes (added by Simon G. <dev@…>, 17 years ago)
  • docs/url_dispatch.txt

     
    204204        ...
    205205    )
    206206
    207 See `Naming URL patterns`_ for why the ``name`` parameter is useful.
     207See `Naming URL patterns`_ for why the ``name`` parameter is useful, and the
     208`Template documentation`_ for syntax and other information.
    208209
     210.. _Template documentation: http://www.djangoproject.com/documentation/templates/#url
     211
    209212handler404
    210213----------
    211214
     
    538541``name`` parameter to ``url()`` allows you to tell them apart in templates.
    539542
    540543The string used for the URL name can contain any characters you like. You are
    541 not restricted to valid Python names.
     544not restricted to valid Python names. For more details see `Template documentation`_.
    542545
    543546.. note::
    544547
Back to Top