module FiltersHelper def summarize_filter(arr) arr.blank? ? "all" : arr.sort.collect{|x| "#{x}".html_safe }.join(" ").html_safe end end