45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
<%= render HeaderComponent.new(title: "Donations") %>
|
|
|
|
<%= render MainSimpleComponent.new do %>
|
|
<% if @donations.any? %>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>User</th>
|
|
<th class="text-right">Amount BTC</th>
|
|
<th class="text-right">in EUR</th>
|
|
<th class="text-right">in USD</th>
|
|
<th class="pl-2">Public name</th>
|
|
<th>Date</th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @donations.each do |donation| %>
|
|
<tr>
|
|
<td><%= donation.user.address %></td>
|
|
<td class="text-right"><%= sats_to_btc donation.amount_sats %></td>
|
|
<td class="text-right"><% if donation.amount_eur.present? %><%= number_to_currency donation.amount_eur / 100, unit: "" %><% end %></td>
|
|
<td class="text-right"><% if donation.amount_usd.present? %><%= number_to_currency donation.amount_usd / 100, unit: "" %><% end %></td>
|
|
<td class="pl-2"><%= donation.public_name %></td>
|
|
<td><%= donation.paid_at ? donation.paid_at.strftime("%Y-%m-%d") : "" %></td>
|
|
<td><%= link_to 'Show', admin_donation_path(donation), class: 'btn btn-sm btn-gray' %></td>
|
|
<td><%= link_to 'Edit', edit_admin_donation_path(donation), class: 'btn btn-sm btn-gray' %></td>
|
|
<td><%= 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>
|
|
<% else %>
|
|
<p>
|
|
No donations yet.
|
|
</p>
|
|
<% end %>
|
|
|
|
<p class="mt-12">
|
|
<%= link_to 'Record an out-of-system donation', new_admin_donation_path, class: 'btn-md btn-gray' %>
|
|
</p>
|
|
<% end %>
|