stadtratmonitor/app/helpers/search_helper.rb
2015-07-18 12:44:40 +02:00

13 lines
323 B
Ruby

module SearchHelper
def facet_list(facets)
return unless facets.present?
content_tag(:ul) do
facets.each do |facet|
concat content_tag(:li,
"#{facet.term} (#{facet.count})",
class: "facet"
)
end
end
end
end