{{for players}}
<tr>
{{for ~root.players}}
{{if index == #index}}
<td>*</td>
{{else}}
<td>{{index}}+{{:#getIndex()}}</td>
{{/if}}
{{/for}}
{{/for}}
I want to get access to #index of the top loop in nested loop by the players to compare top loop #index and nested loop #index. Maybe it is possible to access to top loop current item?