I'm searching for some help regarding a template.
I have a multi-select field that I want printed out on a PDF.
So far I have tried with the #each but it doesn't seem to be working. What fields does the #each work with?
I have a multi-select field that I want printed out on a PDF.
So far I have tried with the #each but it doesn't seem to be working. What fields does the #each work with?
Code:
<table border="0.5pt" cellpadding="2" class="table table-bordered">
<tbody>
<tr>
<th width="85%" align="left"><span style="font-size: 10px;">Navn</span></th>
<th width="15%" align="left"><span style="font-size: 10px;">Valg</span></th>
</tr>
<!-- {{#each repList}} -->
<tr>
<td>{{repList}}</td>
<td></td>
</tr>
<!-- {{/each}} -->
</tbody>
</table>

Comment