diff --git a/app/views/campaigns/_campaigns_table.html.erb b/app/views/campaigns/_campaigns_table.html.erb index fadf215e..02168fd0 100644 --- a/app/views/campaigns/_campaigns_table.html.erb +++ b/app/views/campaigns/_campaigns_table.html.erb @@ -22,7 +22,7 @@ <% end %> <% if campaign.show_total_raised %> - $<%= print_currency campaign.total_raised, false %> raised + <%= print_currency campaign.total_raised, campaign.nonprofit.currency_symbol %> raised <% end %> diff --git a/app/views/charge_mailer/_payment_receipt.html.erb b/app/views/charge_mailer/_payment_receipt.html.erb index 98fcfcf7..2bfc9349 100644 --- a/app/views/charge_mailer/_payment_receipt.html.erb +++ b/app/views/charge_mailer/_payment_receipt.html.erb @@ -10,7 +10,7 @@
Gross Amount | -<%= print_currency(payout.gross_amount) %> | +<%= print_currency(payout.gross_amount, payout.nonprofit.currency_symbol) %> | |
Net Amount | -<%= print_currency(payout.net_amount) %> | +<%= print_currency(payout.net_amount, payout.nonprofit.currency_symbol) %> | |
Date | diff --git a/app/views/nonprofit_mailer/invoice_payment_notification.html.erb b/app/views/nonprofit_mailer/invoice_payment_notification.html.erb index a4f30eb0..a9f4691f 100644 --- a/app/views/nonprofit_mailer/invoice_payment_notification.html.erb +++ b/app/views/nonprofit_mailer/invoice_payment_notification.html.erb @@ -20,7 +20,7 @@ Your invoice for the month of <%= @month_name %> has been paid and the receipt i|||
Total Amount | -<%= print_currency(@payment.gross_amount) %> | +<%= print_currency(@payment.gross_amount, @payment.nonprofit.currency_symbol) %> | |
Transaction Date | diff --git a/app/views/nonprofits/payouts/_modal.html.erb b/app/views/nonprofits/payouts/_modal.html.erb index cc70e095..ab0e3076 100644 --- a/app/views/nonprofits/payouts/_modal.html.erb +++ b/app/views/nonprofits/payouts/_modal.html.erb @@ -5,7 +5,7 @@|||
<%= print_currency @available_total %> | +<%= print_currency @available_total, @nonprofit.currency_symbol %> | <% if @nonprofit.bank_account %> diff --git a/app/views/nonprofits/payouts/index.html.erb b/app/views/nonprofits/payouts/index.html.erb index 94eed097..ce62150a 100644 --- a/app/views/nonprofits/payouts/index.html.erb +++ b/app/views/nonprofits/payouts/index.html.erb @@ -21,10 +21,10 @@ |