%= render partial: "components/header", locals: { page_title: "Donations" } %> <%= render layout: "components/main_simple" do %> <% if @donations.any? %>
| User | Amount BTC | in EUR | in USD | Public name | Date | |||
|---|---|---|---|---|---|---|---|---|
| <%= donation.user.address %> | <%= sats_to_btc donation.amount_sats %> BTC | <%= number_to_currency donation.amount_eur / 100, unit: "" %> | <%= number_to_currency donation.amount_usd / 100, unit: "" %> | <%= donation.public_name %> | <%= donation.paid_at ? donation.paid_at.strftime("%Y-%m-%d") : "" %> | <%= link_to 'Show', admin_donation_path(donation), class: 'btn btn-sm btn-gray' %> | <%= link_to 'Edit', edit_admin_donation_path(donation), class: 'btn btn-sm btn-gray' %> | <%= link_to 'Destroy', admin_donation_path(donation), class: 'btn btn-sm btn-red', method: :delete, data: { confirm: 'Are you sure?' } %> |
No donations yet.
<% end %><%= link_to 'Record an out-of-system donation', new_admin_donation_path, class: 'btn-md btn-gray' %>
<% end %>