Files
grecia/app/helpers/ballots_helper.rb
voodoorai2000 a932737881 Delete ballots
2019-05-31 15:43:06 +02:00

8 lines
150 B
Ruby

module BallotsHelper
def progress_bar_width(amount_available, amount_spent)
(amount_spent / amount_available.to_f * 100).to_s + "%"
end
end