From f202387e6c807878b4fc80e0efa83a488e157b7a Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sat, 11 Feb 2012 12:47:58 +0000 Subject: [PATCH] [1.3.X] Fixed #17618 - Documented that variable names in template must not start with an underscore; thanks guillemette and krzysiumed. Backport of r17504 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17505 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/templates/api.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt index 4cfa4da2ac..7f04f20f1b 100644 --- a/docs/ref/templates/api.txt +++ b/docs/ref/templates/api.txt @@ -112,7 +112,7 @@ template:: "My name is Dolores." Variable names must consist of any letter (A-Z), any digit (0-9), an underscore -or a dot. +(but they must not start with an underscore) or a dot. Dots have a special meaning in template rendering. A dot in a variable name signifies a **lookup**. Specifically, when the template system encounters a