Fixed #28966 -- Doc'd that the uuid URL path converter requires dashes

This commit is contained in:
Tim Graham 2017-12-27 12:23:44 -05:00 committed by GitHub
parent ae1baa7d1d
commit 038ea4f859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -127,9 +127,10 @@ The following path converters are available by default:
plus the hyphen and underscore characters. For example, plus the hyphen and underscore characters. For example,
``building-your-1st-django-site``. ``building-your-1st-django-site``.
* ``uuid`` - Matches a formatted UUID (letters must be lowercase). For example, * ``uuid`` - Matches a formatted UUID. To prevent multiple URLs from mapping to
``075194d3-6885-417e-a8a8-6c931e272f00``. Returns a :class:`~uuid.UUID` the same page, dashes must be included and letters must be lowercase. For
instance. example, ``075194d3-6885-417e-a8a8-6c931e272f00``. Returns a
:class:`~uuid.UUID` instance.
* ``path`` - Matches any non-empty string, including the path separator, * ``path`` - Matches any non-empty string, including the path separator,
``'/'``. This allows you to match against a complete URL path rather than ``'/'``. This allows you to match against a complete URL path rather than