Ticket #5658: 5658.diff

File 5658.diff, 1016 bytes (added by Matt Boersma, 17 years ago)

Links to the templates_python page from templates

  • docs/templates.txt

     
    22The Django template language: For template authors
    33==================================================
    44
     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
     8`The Django template language: For Python programmers`_.
     9
    510Django's template language is designed to strike a balance between power and
    611ease. It's designed to feel comfortable to those used to working with HTML. If
    712you have any exposure to other text-based template languages, such as Smarty_
    813or CheetahTemplate_, you should feel right at home with Django's templates.
    914
     15.. _`The Django template language: For Python programmers`: ../templates_python/
    1016.. _Smarty: http://smarty.php.net/
    1117.. _CheetahTemplate: http://www.cheetahtemplate.org/
    1218
Back to Top