This commit is contained in:
2021-02-22 12:49:42 +01:00
parent 660447a314
commit ecc03183e0
3 changed files with 27 additions and 2 deletions

13
report.tmpl Normal file
View File

@ -0,0 +1,13 @@
<html>
<head></head>
<body>
<table>
#for $mieter in $mietersToReport
<tr>
<td>$mieter.vorname $mieter.nachname</td>
<td>$mieter.saldo €</td>
</tr>
#end for
</table>
</body>
</html>