Tuesday, 10 September 2013

access loop.index when within another loop in twig

access loop.index when within another loop in twig

How can i access the loop's index when i'm in a second loop? like this:
{% for i in range(0, 3) %}
{% for j in range(0, 9) %}
{{ loop1.index + loop2.index }} // ?
{% endfor %}
{% endfor %}

No comments:

Post a Comment