Export Data

<%= form_with url: export_download_path, method: :get, data: { turbo: false } do |f| %>
<%= f.label :start_at, class: "text-sm font-semibold" %> <%= f.datetime_local_field :start_at, class: "rounded-md w-full", value: @start_at %>
<%= f.label :end_at, class: "text-sm font-semibold" %> <%= f.datetime_local_field :end_at, class: "rounded-md w-full", value: @end_at %>
<%= f.submit "Download JSON", class: "px-4 py-2 bg-blue-500 text-white rounded-md" %>
<% end %>