Say I have the following code:
<div>
{{#each questions}}
<div id="question_{{@index}}">
{{#each this.answers}}
<div id="answer_{{???}}_{{@index}}">
{{this}}
</div>
{{/each}}
</div>
{{/each}
</div>
How can I access the outer loop's index (question index) inside of the inner (answer) loop? Essentially I want the id
in the format of "answer_questionIndex_answerIndex"