<%= render 'shared/turbo_modal', title: 'Export', close_after_submit: false do %>
<%= button_to template_submissions_export_index_path(@template), params: { format: :xlsx }, method: :get, data: { turbo_frame: :_top } do %>
<%= svg_icon('download', class: 'w-12 h-12 stroke-2 mr-2') %>
<%= svg_icon('loader', class: 'w-12 h-12 stroke-2 mr-2 animate-spin') %>
XLSX

Primarily opened with Microsoft Excel. Other options include Google Sheets, LibreOffice Calc, and OpenOffice Calc.

<% end %> <%= button_to template_submissions_export_index_path(@template), params: { format: :csv }, method: :get, data: { turbo_frame: :_top } do %>
<%= svg_icon('download', class: 'w-12 h-12 stroke-2 mr-2') %>
<%= svg_icon('loader', class: 'w-12 h-12 stroke-2 mr-2 animate-spin') %>
CSV

Can be opened with Microsoft Excel, Google Sheets, or any text editor like Notepad.

<% end %>
<% end %>