47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
<%= render HeaderComponent.new(title: "Donations") %>
|
|
|
|
<%= render MainSimpleComponent.new do %>
|
|
<section>
|
|
<%= render QuickstatsContainerComponent.new do %>
|
|
<%= render QuickstatsItemComponent.new(
|
|
type: :number,
|
|
title: 'Overall',
|
|
value: @stats[:overall_sats],
|
|
unit: 'sats'
|
|
) %>
|
|
<%= render QuickstatsItemComponent.new(
|
|
type: :number,
|
|
title: 'Donors',
|
|
value: @stats[:donor_count],
|
|
meta: "/ #{User.count} users"
|
|
) %>
|
|
<% end %>
|
|
</section>
|
|
|
|
<% if @pending_donations.any? %>
|
|
<section>
|
|
<h3>Pending</h3>
|
|
<%= render partial: "admin/donations/list", locals: {
|
|
donations: @pending_donations
|
|
} %>
|
|
</section>
|
|
<% end %>
|
|
|
|
<section>
|
|
<% if @donations.any? %>
|
|
<h3>Recent</h3>
|
|
<%= render partial: "admin/donations/list", locals: {
|
|
donations: @donations, pagy: @pagy
|
|
} %>
|
|
<% else %>
|
|
<p>
|
|
No donations received yet.
|
|
</p>
|
|
<% end %>
|
|
</section>
|
|
|
|
<p class="mt-12">
|
|
<%= link_to 'Record an out-of-system donation', new_admin_donation_path, class: 'btn-md btn-gray' %>
|
|
</p>
|
|
<% end %>
|