houdini/app/views/profiles/_donations.html.erb

35 lines
984 B
Text
Raw Normal View History

2020-06-12 20:03:43 +00:00
<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
<!-- partial: profiles/donation_history -->
<header class='group u-padding--10 u-border--bottom'>
<strong class='u-fontSize--18'>One-Time Donations</strong>
<span class='highlight u-floatR'><%= print_currency(@donations.pluck(:amount).sum) %> total</span>
</header>
<% if @donations.empty? %>
<p class='noResults'>
None Yet
</p>
<% else %>
<table class='table--plaid'>
<tbody>
<% @donations.order('created_at DESC').each do |donation| %>
<tr>
<td>
$<%= print_currency donation.amount, false %>
</td>
<td>
<%= link_to(donation.nonprofit.name, donation.nonprofit.url) %>
</td>
<td> <%= simple_date(donation.created_at) %></td>
<td> <%= GetData.chain(donation.card, :name) %> </td>
</tr>
<% end %>
</tbody>
</table> <!-- .donation-table -->
<% end %>