I have two for loops, the second one is inside the first one, I'd like to get the #index of the first loop inside the second loop.
this is my code:
{{for parentObject}}
{{for childObject}}
<input id="myId{{:#indexParent}}{{:#index}}"/>
{{/for}}
{{/for}}
I've tried this code:
{{for parentObject ~parent=#index}}
{{for childObject}}
<input id="myId{{:~parent}}{{:#index}}"/>
{{/for}}
{{/for}}
but it doesn't work!