%- include('layout', { title: 'Kontodetails - ' + account.name }) %> <% override body %>
Kontostand: <%= account.balance.toFixed(2) %> €
Erstellt am: <%= new Date(account.created_at).toLocaleString('de-DE') %>
| Datum | Typ | Betrag | Beschreibung | Artikel | Durchgeführt von |
|---|---|---|---|---|---|
| <%= new Date(transaction.created_at).toLocaleString('de-DE') %> | <%= transaction.type === 'deposit' ? 'Einzahlung' : 'Abbuchung' %> | <%= transaction.amount.toFixed(2) %> € | <%= transaction.description %> | <%= transaction.item_name || '-' %> | <%= transaction.created_by_name || 'System' %> |
Keine Transaktionen für dieses Konto.
<% } %> <% end %>