Omitting Template Tag

For omitting the rendering of template tag {{ }} there are two options:

  1. {% templatetage %} for variables:

    {% templatetag openvariable %} variable {% templatetag closevariable %} will render as {{ variable }}

  2. {% verbatim %} for large block of text (only in Django-1.5(dev)):

    {% verbatim %} This {{ content }} won't be processed. {% endverbatim %}


Edit tutorial

Comment on This Data Unit