Changes between Version 2 and Version 3 of TemplateTagsCheatSheet


Ignore:
Timestamp:
Jun 20, 2006, 11:51:51 PM (18 years ago)
Author:
anonymous
Comment:

use level 1 and 2 headings instead of level 2 and 3.

Legend:

Unmodified
Added
Removed
Modified
  • TemplateTagsCheatSheet

    v2 v3  
    1 == Template Tags ==
     1= Template Tags Cheat Sheet =
    22
    3 === Inheritance and Inclusion ===
     3== Inheritance and Inclusion ==
    44
    55 * {% extends "base.html "%}
     
    88 * {% ssi /home/html/ljworld.com/includes/right_generic.html %}
    99
    10 === Filters and Tags ===
     10== Filters and Tags ==
    1111
    1212 * {% load <tag_or_filter_lib> %}
    1313 * {% filter <filter>[|<filter>...] %}
    1414
    15 === Control ===
     15== Control ==
    1616
    1717 * {% for o in some_list %} ... {% endfor %}
     
    2525 * {% regroup people by gender as grouped %} ... {% for group in grouped %} {{ group.grouper }} ...
    2626
    27 === Others ===
     27== Others ==
    2828
    2929 * {% templatetag  (openblock|closeblock|openvariable|closevariable|openbrace|closebrace) %}
Back to Top