account_balance_walletTeamWalletloginAnmelden
arrow_backZur Teamübersicht

Öffentliche Ansicht

{{ player()?.firstName }} {{ player()?.lastName }}

Die letzten Buchungen dieses Mitglieds.

@if (loading()) {
} @else if (notFound()) {
search_offVerlauf nicht gefunden.
} @else if (transactions().length === 0) {
receipt_longNoch keine Buchungen vorhanden.
} @else {
@for (transaction of transactions(); track transaction.id) {
receipt_long
{{ typeLabel(transaction) }}{{ transaction.date | date: 'dd.MM.yyyy' }} @if (transaction.note) { {{ transaction.note }} }
{{ displayAmount(transaction) | currency: 'EUR' }}
}
}