Changed a documentation example that wasn't wrong to stop complaints.
Fixed #7544. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7811 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
8cb128e57c
commit
a75de3f342
|
@ -477,11 +477,11 @@ escaped when the template is written.
|
|||
|
||||
This means you would write ::
|
||||
|
||||
{{ data|default:"3 > 2" }}
|
||||
{{ data|default:"3 < 2" }}
|
||||
|
||||
...rather than ::
|
||||
|
||||
{{ data|default:"3 > 2" }} <-- Bad! Don't do this.
|
||||
{{ data|default:"3 < 2" }} <-- Bad! Don't do this.
|
||||
|
||||
This doesn't affect what happens to data coming from the variable itself.
|
||||
The variable's contents are still automatically escaped, if necessary, because
|
||||
|
|
Loading…
Reference in New Issue