26 lines
632 B
Smarty
26 lines
632 B
Smarty
% rebase("base.tpl")
|
|
|
|
<h1 class="text-2xl font-bold text-indigo-500">Monatsübersicht</h1>
|
|
|
|
|
|
% if len(categories) > 0:
|
|
<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>kk
|
|
</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-red-500' if c['amount'][0] == "-" else 'text-green-500' }}">{{ c["amount"] }} €</td>
|
|
</tr>
|
|
% end
|
|
</tbody>
|
|
% else:
|
|
|
|
No transactions this month
|
|
|
|
% end
|