account_balance_walletTeamWalletloginAnmelden
arrow_backZur Teamübersicht
@if (loading()) { } @else {

Öffentliche Ansicht

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

Die letzten Buchungen dieses Mitglieds.

}
@if (loading()) {
@for (row of skeletonRows; track row) { }
} @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 }} }
}
}