Changeset 7681
- Timestamp:
- 06/17/08 10:46:59 (2 months ago)
- Files:
-
- django/trunk/docs/model-api.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/model-api.txt
r7678 r7681 2012 2012 2013 2013 For that problem, Django has **named URL patterns**. Using a named 2014 URL patter , it's possible to give a name to a pattern, and then2015 reference the name , rather than the view function. A named URL2014 URL pattern, it's possible to give a name to a pattern, and then 2015 reference the name rather than the view function. A named URL 2016 2016 pattern is defined by replacing the pattern tuple by a call to 2017 2017 the ``url`` function):: … … 2034 2034 More details on named URL patterns can be found in `URL dispatch documentation`_. 2035 2035 2036 .. _URL dispatch : ../url_dispatch/#naming-url-patterns2036 .. _URL dispatch documentation: ../url_dispatch/#naming-url-patterns 2037 2037 2038 2038 Executing custom SQL
