38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
<%= render HeaderComponent.new(title: "Donations") %>
|
|
|
|
<%= render MainSimpleComponent.new do %>
|
|
<table class="w-1/2">
|
|
<tbody>
|
|
<tr>
|
|
<th>User</th>
|
|
<td><%= link_to @donation.user.address, admin_user_path(@donation.user.address), class: 'ks-text-link' %></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Amount sats</th>
|
|
<td><%= @donation.amount_sats %></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Amount EUR</th>
|
|
<td><%= @donation.amount_eur %></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Amount USD</th>
|
|
<td><%= @donation.amount_usd %></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Public name</th>
|
|
<td><%= @donation.public_name %></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Date</th>
|
|
<td><%= @donation.paid_at.strftime("%Y-%m-%d (%H:%M UTC)") %></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<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 %>
|