10 lines
186 B
Ruby
10 lines
186 B
Ruby
module TicketsHelper
|
|
def format_ticket_price(price_cents)
|
|
if price_cents == 0
|
|
"Gratuit"
|
|
else
|
|
number_to_currency(price_cents / 100.0, unit: "€")
|
|
end
|
|
end
|
|
end
|