<% donations.each do |donation| %>
  • <% if donation.completed? %> <%= donation.paid_at.strftime("%B %d, %Y") %> <% else %> <%= donation.created_at.strftime("%B %d, %Y") %> <% end %>

    <%= number_with_delimiter donation.amount_sats %> sats
    (~ <%= number_to_currency donation.fiat_amount.to_f / 100, unit: "" %> <%= donation.fiat_currency %>)

    <% if donation.processing? %> Waiting for confirmations <% if donation.donation_method == "btcpay" %> <%= link_to "check status", btcpay_checkout_url(donation.btcpay_invoice_id), class: "ml-2 btn-sm btn-gray" %> <% end %> <% else %> <% if donation.public_name.present? %> As: <%= donation.public_name %> <% else %> Anonymous <% end %> <% end %>

  • <% end %>