Module: Crm::ShowcasesHelper
- Defined in:
- app/helpers/crm/showcases_helper.rb
Instance Method Summary collapse
Instance Method Details
#showcase_state_badge(state) ⇒ Object
2 3 4 5 6 7 8 9 |
# File 'app/helpers/crm/showcases_helper.rb', line 2 def showcase_state_badge(state) color = case state when 'published' then 'success' when 'draft' then 'warning' else 'secondary' end content_tag :span, state.to_s.humanize, class: "badge bg-#{color}" end |