Changeset 7811
- Timestamp:
- 06/30/08 21:17:24 (2 months ago)
- Files:
-
- django/trunk/docs/templates.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/templates.txt
r7674 r7811 478 478 This means you would write :: 479 479 480 {{ data|default:"3 & gt; 2" }}480 {{ data|default:"3 < 2" }} 481 481 482 482 ...rather than :: 483 483 484 {{ data|default:"3 >2" }} <-- Bad! Don't do this.484 {{ data|default:"3 < 2" }} <-- Bad! Don't do this. 485 485 486 486 This doesn't affect what happens to data coming from the variable itself.
