stadtratmonitor/app/helpers/search_helper.rb

14 lines
317 B
Ruby
Raw Normal View History

2015-06-22 20:38:13 +02:00
module SearchHelper
def facet_list(facets)
return unless facets.present?
content_tag(:ul) do
facets.each do |term, count|
concat content_tag(:li,
"#{term} (#{count})",
class: "facet"
)
end
end
end
end