vote up 0 vote down star

In jinja, the variable loop.index holds the iteration number of the current running loop.

When I have nested loops, how can I get in the inner loop the current iteration of an outer loop?

flag

1 Answer

vote up 3 vote down check

Store it in a variable, for example:

{% for i in a %}
    {% set outer_loop = loop %}
    {% for j in a %}
        {{ outer_loop.index }}
    {% endfor %}
{% endfor %}
link|flag
how do I do that? – flybywire Oct 14 at 16:04
See the updated answer. – Lukáš Lalinský Oct 14 at 16:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.