summaryrefslogtreecommitdiff
path: root/docs/templates.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-09-05 23:38:46 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-09-05 23:38:46 +0000
commit096ad32c845f850278b942d087e607dc4311b5f9 (patch)
tree89cfd7845175490ff8a2fb57e256d4616291dbea /docs/templates.txt
parente5a801590a062afaafa393bfc544c4441fea4362 (diff)
Added docs/templates_python.txt, which isn't finished yet
git-svn-id: http://code.djangoproject.com/svn/django/trunk@623 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/templates.txt')
-rw-r--r--docs/templates.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/templates.txt b/docs/templates.txt
index 89d9eacda8..e4072b8e44 100644
--- a/docs/templates.txt
+++ b/docs/templates.txt
@@ -1,6 +1,6 @@
-============================
-The Django template language
-============================
+==================================================
+The Django template language: For template authors
+==================================================
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
@@ -45,7 +45,7 @@ explained later in this document.::
Why use a text-based template instead of an XML-based one (like Zope's
TAL)? We wanted Django's template language to be usable for more than
just XML/HTML templates. At World Online, we use it for e-mails,
- Javascript and CSV. You can use the template language for any text-based
+ JavaScript and CSV. You can use the template language for any text-based
format.
What's a variable?