Hello,
I am trying to create a layout for PDF, where multiple linked records should be placed in three records in a row and then a break to the next row.
This is the code I use, but the second row keeps stacking above the first row. What am I doing wrong? Her the code:
The result:
I am trying to create a layout for PDF, where multiple linked records should be placed in three records in a row and then a break to the next row.
This is the code I use, but the second row keeps stacking above the first row. What am I doing wrong? Her the code:
Code:
<table> <tbody> <tr> <!-- {{#each werkeAusstellungen}} --> {{#ifMultipleOf @key 3}}<br>{{/ifMultipleOf}} <td width="10%">{{imageTag bildID height="60px" width="auto"}}</td> <td width="20%">{{ausstellungsnummer}} {{name}}<b r>{{{legende}}}</td> <!-- {{/each}} --> </tr> </tbody> </table>
Comment