35 lines
1.4 KiB
Plaintext
35 lines
1.4 KiB
Plaintext
<table class="divided">
|
|
<thead>
|
|
<tr>
|
|
<th>User</th>
|
|
<th class="text-right">Sats</th>
|
|
<th class="text-right">Fiat Amount</th>
|
|
<th class="pl-2">Public name</th>
|
|
<th>Date</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% donations.each do |donation| %>
|
|
<tr>
|
|
<td><%= link_to donation.user.cn, admin_user_path(donation.user.cn), class: 'ks-text-link' %></td>
|
|
<td class="text-right"><% if donation.amount_sats.present? %><%= number_with_delimiter donation.amount_sats %><% end %></td>
|
|
<td class="text-right"><% if donation.fiat_amount.present? %><%= number_to_currency donation.fiat_amount.to_f / 100, unit: "" %> <%= donation.fiat_currency %><% end %></td>
|
|
<td class="pl-2"><%= donation.public_name %></td>
|
|
<td><%= donation.paid_at ? donation.paid_at.strftime("%Y-%m-%d (%H:%M UTC)") : donation.created_at.strftime("%Y-%m-%d (%H:%M UTC)") %></td>
|
|
<td class="text-right">
|
|
<%= 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',
|
|
data: { turbo_method: :delete, turbo_confirm: 'Are you sure?' } %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% if defined?(pagy) %>
|
|
<div class="mt-8">
|
|
<%== pagy_nav pagy %>
|
|
</div>
|
|
<% end %>
|