Django

Code

Changeset 6533

Show
Ignore:
Timestamp:
10/19/07 00:07:47 (1 year ago)
Author:
gwilson
Message:

Fixed #5658 -- Added a note to the top of the "for template authors" template documentation that states the scope of the document, along with a link to the "for Python programmers" documentation. Removed the link to the "for Python programmers" documentation at the bottom since it would be redundant.

Files:

Legend:

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

    r6366 r6533  
    22The Django template language: For template authors 
    33================================================== 
     4 
     5This document explains the language syntax of the Django template system.  If 
     6you're looking for a more technical perspective on how it works and how to 
     7extend it, see `The Django template language: For Python programmers`_. 
    48 
    59Django's template language is designed to strike a balance between power and 
     
    812or CheetahTemplate_, you should feel right at home with Django's templates. 
    913 
     14.. _`The Django template language: For Python programmers`: ../templates_python/ 
    1015.. _Smarty: http://smarty.php.net/ 
    1116.. _CheetahTemplate: http://www.cheetahtemplate.org/ 
     
    14391444 
    14401445.. _webdesign documentation: ../webdesign/ 
    1441  
    1442 Next steps 
    1443 ========== 
    1444  
    1445 Read the document `The Django template language: For Python programmers`_ if 
    1446 you're interested in learning the template system from a technical 
    1447 perspective -- how it works and how to extend it. 
    1448  
    1449 .. _The Django template language\: For Python programmers: ../templates_python/