Frühstückskonten Verwaltung

<% if (typeof user !== 'undefined' && user) { %> <% } %>
<% if (typeof account !== 'undefined' && account) { %>

Kontodetails: <%= account.name %>

Geld einzahlen Betrag abbuchen PDF Export <% if (typeof isAdmin !== 'undefined' && isAdmin) { %> Konto bearbeiten <% } %> Zurück zur Liste

Transaktionshistorie

<% if (typeof transactions !== 'undefined' && transactions.length > 0) { %> <% transactions.forEach(function(transaction) { %> <% }); %> <% } else { %> <% } %>
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.
<% } else { %>

Konto nicht gefunden.

<% } %>