In a Django template, you use tags to add logic like loops, conditions, and variable manipulations within the HTML. Tags are enclosed within {% %}
{% for item in item_list %} <li>{{ item.name }}</li> {% endfor %}
References
https://docs.djangoproject.com/en/5.0/ref/templates/builtins/#for