Commit a75de3f3 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

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
parent 8cb128e5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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