Indeks Nunjucks di Loop

{% for item in items %}
	{{ loop.index }}
{% endfor %}

// Nunjucks: Get index in a loop => {{ loop.index }}
KostasX