{{ username }}

{{ userID }}

{{ balance | currency}}

Recent Transactions
@for (transaction of transactions; track $index) {
@if (transaction.receiverID == userID) {
{{ transaction.senderID }}
}@else {
{{ transaction.receiverID }}
} {{ transaction.date | date:'medium' }}
@if (transaction.receiverID == userID) {
{{ transaction.amount | currency }}
}@else {
{{ - transaction.amount | currency }}
}
}