Report Starter Kit
<style>
#preExclude#
td {
border: 1px solid black;
border-spacing: 0;
}
table {
border-collapse: collapse;
}
.amount {
text-align: right;
}
.total {
font-weight: bold;
}
#end-preExclude#
</style>
<h3>Title</h3>
<table style="width: 100%; border: 1px solid black;">
<tr>
<td>Name</td>
<td>Amount</td>
</tr>
{start-repeat:item in entries}
<tr>
<td>{item['Name']}</td>
<td>{item['Amount']}</td>
</tr>
{end-repeat}
<tr>
<td></td>
<td class="amount total">{sum(item['Amount'] for item in entries)|n2}</td>
</tr>
</table>
Last updated