Comment
{% comment %} {% endcomment %}
{% for i in list %} <li class="{% cycle 'one' 'two' %}"> ... </li> {% endfor %}
{% filter filter_1|filter_2 %} ... {% endfilter %}
{% for key, value in data.items %} {{ key }}: {{ value }} {% endfor %}
{% for x, y in points %} There is a point at {{ x }},{{ y }} {% endfor %}
forloop.counter
forloop.counter0
forloop.revcounter
forloop.revcounter0
forloop.first
forloop.last
forloop.parentloop
forloop.second
{% for item in items_list %} <li>{{ item }}</li> {% empty %} <li>No items at the moment</li> {% endfor %}
{% if option1 %} <p>This is first option</p> {% elif option2 %} <p>not first, but second option</p> {% else %} <p>no matches </p> {% endif %}
{% ifequal user.pk comment.user_id %} ... {% endifequal %}
{% include "name_snippet.html" with var1="Hello" var2="World" %}