2018-03-25 17:20:54 +00:00
|
|
|
<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
|
2018-03-25 17:30:42 +00:00
|
|
|
<table class='table'>
|
|
|
|
<tr>
|
|
|
|
<td><strong>Gross Amount</strong></td>
|
2018-07-23 21:35:27 +00:00
|
|
|
<td><%= print_currency(payout.gross_amount, payout.nonprofit.currency_symbol) %></td>
|
2018-03-25 17:30:42 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><strong>Net Amount</strong></td>
|
2018-07-23 21:35:27 +00:00
|
|
|
<td><%= print_currency(payout.net_amount, payout.nonprofit.currency_symbol) %></td>
|
2018-03-25 17:30:42 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><strong>Date</strong></td>
|
|
|
|
<td><%= simple_date(payout.created_at) %></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><strong>Bank Account</strong></td>
|
|
|
|
<td><%= payout.bank_name %></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|