Small design updates

This commit is contained in:
2024-08-25 22:34:18 +02:00
parent 9fc2091065
commit a49045f59a
6 changed files with 32 additions and 13 deletions

View File

@@ -1,2 +1,11 @@
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