All checks were successful
continuous-integration/drone/push Build is passing
39 lines
756 B
Plaintext
39 lines
756 B
Plaintext
<%= render HeaderComponent.new(title: "Donations") %>
|
|
|
|
<%= render MainSimpleComponent.new do %>
|
|
<p>
|
|
<strong>User:</strong>
|
|
<%= @donation.user.address %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Amount sats:</strong>
|
|
<%= @donation.amount_sats %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Amount eur:</strong>
|
|
<%= @donation.amount_eur %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Amount usd:</strong>
|
|
<%= @donation.amount_usd %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Public name:</strong>
|
|
<%= @donation.public_name %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Date:</strong>
|
|
<%= @donation.paid_at %>
|
|
</p>
|
|
|
|
<p class="mt-8">
|
|
<%= link_to 'Edit', edit_admin_donation_path(@donation), class: 'ks-text-link' %> |
|
|
<%= link_to 'Back', admin_donations_path, class: 'ks-text-link' %>
|
|
</p>
|
|
<% end %>
|