Django

Code

Changeset 7681

Show
Ignore:
Timestamp:
06/17/08 10:46:59 (2 months ago)
Author:
gwilson
Message:

Refs #7216 -- Corrected typo, removed comma, trimmed trailing whitespace, and fixed reST link in [7678].

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/model-api.txt

    r7678 r7681  
    20122012 
    20132013For that problem, Django has **named URL patterns**. Using a named 
    2014 URL patter, it's possible to give a name to a pattern, and then  
    2015 reference the name, rather than the view function. A named URL  
     2014URL pattern, it's possible to give a name to a pattern, and then 
     2015reference the name rather than the view function. A named URL 
    20162016pattern is defined by replacing the pattern tuple by a call to 
    20172017the ``url`` function):: 
     
    20342034More details on named URL patterns can be found in `URL dispatch documentation`_. 
    20352035 
    2036 .. _URL dispatch: ../url_dispatch/#naming-url-patterns 
     2036.. _URL dispatch documentation: ../url_dispatch/#naming-url-patterns 
    20372037 
    20382038Executing custom SQL