This commit is contained in:
2021-02-22 13:02:14 +01:00
parent 68a71d2266
commit b0223cff24
3 changed files with 10 additions and 8 deletions

View File

@ -1,11 +1,15 @@
<html>
<head></head>
<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>$mieter.saldo €</td>
<td class="saldo">$mieter.saldo €</td>
</tr>
#end for
</table>