2023-09-28 19:41:39 +02:00

32 lines
641 B
Handlebars

<h1>Message:</h1>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Day</th>
<th scope="col">Month</th>
<th scope="col">Year</th>
<th scope="col">Amount</th>
<th scope="col">Type</th>
<th scope="col">Company</th>
<th scope="col">Raw</th>
</tr>
</thead>
<tbody>
{{#each messages}}
<tr>
<th scope="row">{{@index}}</th>
<td>{{day}}</td>
<td>{{month}}</td>
<td>{{year}}</td>
<td>{{amount}} EUR</td>
<td>{{type}}</td>
<td>{{company}}</td>
<td>{{raw}}</td>
</tr>
{{/each}}
</tbody>
</table>