{% extends "_base.html" %} {% load common_tags %} {% block title %}Tags{% endblock %} {% block main %}

Tags

Filters with Tags

for Loops

    {% for item, remaining in inventory.items %}
  1. {{ item }}: {{ remaining }}
  2. {% endfor %}
    {% for fruit in fruits %}
  1. {{ fruit }}
  2. {% endfor %}
    {% for fruit in fruits reversed %}
  1. {{ fruit }}
  2. {% endfor %}

cycle

    {% for fruit in fruits %}
  1. {{ fruit }}
  2. {% endfor %}

with

{% with joke_count=5 %} {{ joke_count }} joke{{ joke_count|pluralize }} that match your search. {% endwith %}

ifchanged

{% for food in foods %} {% ifchanged food.category %}

{{ food.category }}

{% endifchanged %}

{{ food.name }}

{% endfor %}

repeat Custom Tag

{% repeat company 3 %}

{% endblock %}