{{define "driver_wallet"}}

Solde : {{ printf "%.2f" .ViewState.wallet_balance }} €

{{if .ViewState.driver.Data.wallet_history}}

Historique des opérations

{{range $index, $operation := .ViewState.driver.Data.wallet_history}} {{end}}
Date Crédit Débit Moyen de paiement Description
Solde initial {{if .ViewState.driver.Data.wallet}}{{ printf "%.2f" .ViewState.driver.Data.wallet }} €{{else}}0.00 €{{end}} - - -
{{if $operation.timestamp}}{{timeFormat $operation.timestamp "02/01/2006 15:04"}}{{end}} {{if $operation.amount}} {{if or (eq $operation.operation_type "credit") (not $operation.operation_type)}} {{ printf "%.2f" $operation.amount }} € {{end}} {{end}} {{if eq $operation.operation_type "debit"}} {{ printf "%.2f" $operation.amount }} € {{end}} {{$operation.payment_method}} {{$operation.description}}
{{else}}

Aucune opération enregistrée

{{end}}
{{end}}