schmeckels/views/index.tpl
2020-03-30 21:24:11 +02:00

19 lines
No EOL
523 B
Smarty

% rebase("base.tpl")
<h1 class="text-2xl font-bold text-indigo-500">Monatsübersicht</h1>
<table class="table-auto border-none">
<thead>
<tr>
<th class="px-4 py-2">Categorie</th>
<th class="px-4 py-2 text-right">Summe</th>
</tr>
</thead>
<tbody>
% for c in categories:
<tr>
<td class="border px-4 py-2">{{ c["name"] }}</td>
<td class="border px-4 py-2 text-right {{ 'text-green-500' if c['amount'] > 0 else 'text-red-500' }}">{{ c["amount"] }} €</td>
</tr>
% end
</tbody>