Ticket #5198: url_dispatch.diff
File url_dispatch.diff, 869 bytes (added by , 17 years ago) |
---|
-
docs/url_dispatch.txt
204 204 ... 205 205 ) 206 206 207 See `Naming URL patterns`_ for why the ``name`` parameter is useful. 207 See `Naming URL patterns`_ for why the ``name`` parameter is useful, and the 208 `Template documentation`_ for syntax and other information. 208 209 210 .. _Template documentation: http://www.djangoproject.com/documentation/templates/#url 211 209 212 handler404 210 213 ---------- 211 214 … … 538 541 ``name`` parameter to ``url()`` allows you to tell them apart in templates. 539 542 540 543 The string used for the URL name can contain any characters you like. You are 541 not restricted to valid Python names. 544 not restricted to valid Python names. For more details see `Template documentation`_. 542 545 543 546 .. note:: 544 547