<%# locals => f %>
<%= f.label :title %> <%= f.text_field :title %>
<%= f.label :description %> <%= f.text_field :description %>
<%= f.label :report_type, 'Report Type' %> <%= f.select :report_type, options_for_select( [ [ 'Graph', 'graph' ], [ 'Funnel', 'funnel' ] ] ) %>
<%= f.label :delivery_set, 'Frequency' %> <%= f.select :delivery_set, options_for_select( [ [ 'Daily', 'daily' ], [ 'Weekly', 'weekly' ], [ 'Monthly', 'monthly' ], ['Never', 'never'] ] ) %>
<%= f.label :recipients, 'Recipients' %> <%= f.text_area :recipients %>