Django

Code

Changeset 4998

Show
Ignore:
Timestamp:
04/12/07 06:12:45 (2 years ago)
Author:
russellm
Message:

Fixed #3956 -- Minor typo in template docs. Thanks, Nick Fishman.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/templates.txt

    r4885 r4998  
    703703"raw" value. In this example, "f" is backslash-escaped, because otherwise 
    704704"f" is a format string that displays the time. The "o" doesn't need to be 
    705 escaped, because it's not a format character.:: 
     705escaped, because it's not a format character:: 
    706706 
    707707    It is the {% now "jS o\f F" %} 
    708708 
    709 (Displays "It is the 4th of September" %} 
     709This would display as "It is the 4th of September". 
    710710 
    711711regroup