You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
326 B

module ApplicationHelper
def color_class_for(entry)
case entry.entry_art
when "Praktikum"
"bg-primary text-white"
when "Selbsterfahrung"
"bg-info text-dark"
when "Supervision"
"bg-warning text-dark"
when "Fortbildung"
"bg-success text-white"
else
"bg-secondary text-white"
end
end
end