Changeset 576
- Timestamp:
- 08/29/05 16:58:21 (3 years ago)
- Files:
-
- django/trunk/docs/templates.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/templates.txt
r442 r576 441 441 {% endfor %} 442 442 443 ``ifequal`` 444 Output the contents of the block if the two arguments equal each other. 445 446 Example:: 447 448 {% ifequal user.id_ comment.user_id %} 449 ... 450 {% endifequal %} 451 452 As in the {% if %} tag, an {% else %} clause is optional. 453 443 454 ``ifnotequal`` 444 455 Output the contents of the block if the two arguments do not equal each other. … … 449 460 ... 450 461 {% endifnotequal %} 462 463 As in the {% if %} tag, an {% else %} clause is optional. 451 464 452 465 ``load``
