I have an entity called "Item" and another called "Event" with relationship one-to-many (Event->Items).
I'm creating a PDF template and using the "<!-- {{#each itemList}} -->" code as described in the docs, here is the snippet:
<!-- {{#each itemsNames}} -->
<tr>
<td><p>{{name}}</p></td>
</tr>
<!-- {{/each}} -->
But all I get is a "?" in the PDF. The placeholder {{itemsNames}} is a valid one in the list. What am I doing wrong!?
I'm creating a PDF template and using the "<!-- {{#each itemList}} -->" code as described in the docs, here is the snippet:
<!-- {{#each itemsNames}} -->
<tr>
<td><p>{{name}}</p></td>
</tr>
<!-- {{/each}} -->
But all I get is a "?" in the PDF. The placeholder {{itemsNames}} is a valid one in the list. What am I doing wrong!?
Comment