summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2007-10-19 05:07:47 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2007-10-19 05:07:47 +0000
commit40f1c923e2524733b545d381b2044df8956bf00f (patch)
treec87193999143bb436586a5d5ac3471be06ba1b00 /docs
parent5c8b26df151117c2d0db8ad73681599cb79864bb (diff)
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.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6533 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/templates.txt14
1 files changed, 5 insertions, 9 deletions
diff --git a/docs/templates.txt b/docs/templates.txt
index cd436a987d..41b15f3d19 100644
--- a/docs/templates.txt
+++ b/docs/templates.txt
@@ -2,11 +2,16 @@
The Django template language: For template authors
==================================================
+This document explains the language syntax of the Django template system. If
+you're looking for a more technical perspective on how it works and how to
+extend it, see `The Django template language: For Python programmers`_.
+
Django's template language is designed to strike a balance between power and
ease. It's designed to feel comfortable to those used to working with HTML. If
you have any exposure to other text-based template languages, such as Smarty_
or CheetahTemplate_, you should feel right at home with Django's templates.
+.. _`The Django template language: For Python programmers`: ../templates_python/
.. _Smarty: http://smarty.php.net/
.. _CheetahTemplate: http://www.cheetahtemplate.org/
@@ -1438,12 +1443,3 @@ A collection of template tags that can be useful while designing a website,
such as a generator of Lorem Ipsum text. See the `webdesign documentation`_.
.. _webdesign documentation: ../webdesign/
-
-Next steps
-==========
-
-Read the document `The Django template language: For Python programmers`_ if
-you're interested in learning the template system from a technical
-perspective -- how it works and how to extend it.
-
-.. _The Django template language\: For Python programmers: ../templates_python/