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