Files
hv-cron/report.tmpl
2021-02-22 13:02:14 +01:00

18 lines
332 B
Cheetah

<html>
<head>
<style type="text/css">
td.saldo { text-align: right }
</style>
</head>
<body>
<table>
#for $mieter in $mietersToReport
<tr>
<td>$mieter.vorname $mieter.nachname</td>
<td class="saldo">$mieter.saldo €</td>
</tr>
#end for
</table>
</body>
</html>