All checks were successful
continuous-integration/drone/push Build is passing
35 lines
597 B
Plaintext
35 lines
597 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<p>
|
|
<strong>User:</strong>
|
|
<%= @donation.user_id %>
|
|
</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>
|
|
|
|
<%= link_to 'Edit', edit_admin_donation_path(@donation), class: 'ks-text-link' %> |
|
|
<%= link_to 'Back', admin_donations_path, class: 'ks-text-link' %>
|