%= render HeaderComponent.new(title: "Donations") %>
<%= render MainSimpleComponent.new do %>
No donations received yet.
Pending
<%= render partial: "admin/donations/list", locals: {
donations: @pending_donations
} %>
Received
<%= render partial: "admin/donations/list", locals: {
donations: @donations, pagy: @pagy
} %>
<% else %>
<%= link_to 'Record an out-of-system donation', new_admin_donation_path, class: 'btn-md btn-gray' %>
<% end %>