<script id="contact-row" type="text/x-handlebars-template" >
{{#each rows}}
<tr>
{{getInputField @index "country" country }}
{{#each contactData}}
{{getInputFieldForData @index "contractName" contractName }}
{{/each}}
</tr>
{{/each}}
I want to get the index of the parent in the inner #each loop. I tried ../@index but that gives error.