" class="bg-white space-y-4 p-5 border border-alpha-black-25 rounded-xl shadow-xs">
<%= check_box_tag "selection_entry",
class: "maybe-checkbox maybe-checkbox--light",
data: { action: "bulk-select#togglePageSelection" } %>
<%= tag.p t(".trade") %>
<%= tag.p t(".type"), class: "col-span-3 justify-self-end" %>
<%= tag.p t(".amount"), class: "col-span-3 justify-self-end" %>
<%= render "selection_bar" %>
<% if @entries.empty? %>
<%= t(".no_trades") %>
<% else %>
<%= entries_by_date(@entries) do |entries| %>
<%= render partial: "account/trades/trade", collection: entries, as: :entry %>
<% end %>
<% end %>