{{ if .ViewState.booking.Price }}
{{ if eq .ViewState.booking.Price.Type.String "FREE" }}
Gratuit
{{ else if eq .ViewState.booking.Price.Type.String "PAYING" }}
{{ printf "%.2f" .ViewState.booking.Price.Amount }} {{ .ViewState.booking.Price.Currency }}
{{ else }}
Prix non défini
{{ end }}
{{ else }}
Prix non disponible
{{ end }}