<% content_for :title, "Exports" %>

Exports

<% if @exports.empty? %>

Hello there!

Here you'll find your exports, created on <%= link_to 'Points', points_url, class: 'link' %> page. But now there are none.

<% else %>
<%= paginate @exports %>
<% @exports.each do |export| %> <% end %>
Name File size Created at Status Actions
<%= export.name %> <%= number_to_human_size(export.file&.byte_size) || 'N/A' %> <%= human_datetime(export.created_at) %> <%= export.status %> <% if export.completed? %> <% if export.file.present? %> <%= link_to 'Download', rails_blob_path(export.file, disposition: 'attachment'), class: "px-4 py-2 bg-blue-500 text-white rounded-md", download: export.name %> <% else %> <%= link_to 'Download', export.url, class: "px-4 py-2 bg-blue-500 text-white rounded-md", download: export.name %> <% end %> <% end %> <%= link_to 'Delete', export, data: { turbo_confirm: "Are you sure?", turbo_method: :delete }, method: :delete, class: "px-4 py-2 bg-red-500 text-white rounded-md" %>
<% end %>