Files
plottservice/app/helpers/operator/jobs_helper.rb
2024-08-25 22:34:18 +02:00

12 lines
264 B
Ruby

module Operator::JobsHelper
def status_icon(status)
case status
when :printing then "printer"
when :pickup then "arrow-up-tray"
when :paid then "banknotes"
when :canceled then "x-circle"
else "inbox-stack"
end
end
end