<% 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 %>
<% @exports.each do |export| %> <% end %>
Name Status Actions Created at
<%= export.name %> <%= export.status %> <% if export.completed? %> <%= link_to 'Download', export.url, class: "px-4 py-2 bg-blue-500 text-white rounded-md", download: export.name %> <% end %> <%= link_to 'Delete', export, data: { confirm: "Are you sure?", turbo_confirm: "Are you sure?", turbo_method: :delete }, method: :delete, class: "px-4 py-2 bg-red-500 text-white rounded-md" %> <%= export.created_at.strftime('%Y-%m-%d %H:%M:%S') %>
<% end %>