Exports page
<%= turbo_frame_tag "results" do %>
<%= form_with(action: exports_path,
method: :get,
data: {
turbo_frame: "results",
turbo_action: "advance",
controller: "form",
action: "input->form#submit"
}) do |f| %>
>
>
<% if @schools_grouped_by == "district" %>
<%= f.select(:district, @districts, selected: @selected_district_id ) %>
<% end %>
<% if @schools_grouped_by == "school" %>
<%= f.select(:school, @schools.map(&:name), selected: @selected_school.name ) %>
<% end %>
<% @academic_years.each_with_index do | year, index | %>
>
<% end %>
<%= link_to "Submit", exports_csv_path(format: :csv, params: params.to_enum.to_h ) , class: "btn btn-primary mt-5"%>
<% end %>
<% end %>