4 Category = Struct.new(:id, :label)
6 def report_link(name, reportable)
7 link_to name, new_report_url(:reportable_id => reportable.id, :reportable_type => reportable.class.name)
10 # Convert a list of strings into objects with methods that the collection_radio_buttons helper expects
11 def report_categories(reportable)
12 Report.categories_for(reportable).map do |c|
13 Category.new(c, t(".categories.#{reportable.class.name.underscore}.#{c}_label"))