• CSV
@if ((query | async)?.data; as data) { @if ((query | async)?.data?.driverWallets; as wallets) { {{ 'profile.name' | translate }} {{ 'profile.amount' | translate }} {{ 'profile.currency' | translate }} {{ 'profile.actions' | translate }} @for (data of table.data; track data) { {{data.driver == null ? 'Driver not found' : (data.driver.firstName ?? '' + data.driver.lastName) }} {{ data.balance | currency: data.currency }} {{ data.currency }} {{ 'table.viewDriver' | translate }} } } }