serve: show iban in transaction list
This commit is contained in:
parent
4a4d2e3aaa
commit
c687b244a7
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@
|
|||
<tr>
|
||||
<td class="border px-4 py-2"><input type="checkbox" name="transaction" value="{{ t.id }}"></td>
|
||||
<td class="border px-4 py-2">{{ t.get_date("de") }}</td>
|
||||
<td class="border px-4 py-2">{{ t.name }}</td>
|
||||
<td class="border px-4 py-2">{{ t.name }}<br/> <span class="text-gray-500">{{t.iban}}</span></td>
|
||||
<td class="border px-4 py-2">{{ t.description }}</td>
|
||||
<td class="border px-4 py-2 {{ 'text-green-500' if t.is_positive() else 'text-red-500' }}">{{ t.pretty_amount() }}</td>
|
||||
% if t.category:
|
||||
|
|
Loading…
Add table
Reference in a new issue