When running the following jinja code, I only get “Column info” printed. Why the index does not appears ?
JavaScript
x
6
1
{% for field in columns_form %}
2
{% if 'title_' in field.name %}
3
<td>Column {{ loop.index }} info</td>
4
{% endif %}
5
{% endfor %}
6
Advertisement
Answer
It sounds like the template is being treated as a Django template, not a Jinja template.
Using {{ loop.index }}
should work in a Jinja template, but wouldn’t work in a Django template, where you would use {{ forloop.counter }}
instead.