48 lines
1.6 KiB
Text
48 lines
1.6 KiB
Text
|
<!-- settings/_pricing -->
|
||
|
|
||
|
<header class='pane-header'>
|
||
|
<h3>Pricing Plan</h3>
|
||
|
</header>
|
||
|
|
||
|
<div class='pane-inner'>
|
||
|
<p><strong>Tier:
|
||
|
<%= @nonprofit.billing_plan.name %>
|
||
|
(
|
||
|
$<%= Format::Currency.cents_to_dollars @nonprofit.billing_plan.amount %> <%= @nonprofit.billing_plan.interval || 'monthly'%>
|
||
|
<%= @nonprofit.billing_plan.percentage_fee > 0 ? ', ' + (@nonprofit.billing_plan.percentage_fee * 100).round(2).to_s + '%' : '' %>
|
||
|
)
|
||
|
</strong><br>
|
||
|
<em><small>Our processor (Stripe) assesses an additional 2.2% + $0.30 for each online payment.</small></em></p>
|
||
|
|
||
|
<% if @nonprofit.billing_subscription.status == 'trialing' %>
|
||
|
<p>
|
||
|
To ensure that your account stays active after your trial,
|
||
|
<a href='/nonprofits/<%=@nonprofit.id%>/card/edit'><strong> add a payment method.</strong></a>
|
||
|
</p>
|
||
|
<% end %>
|
||
|
|
||
|
<% if @nonprofit.billing_plan.amount > 0 && @nonprofit.billing_subscription.status != 'trialing' %>
|
||
|
<p><a class='u-color--red u-small' href='/nonprofits/<%=@nonprofit.id%>/billing_subscription/cancellation'>Unsubscribe from plan</a></p>
|
||
|
|
||
|
<p>
|
||
|
<strong>
|
||
|
<a href='/nonprofits/<%= @nonprofit.id %>/card/edit'>
|
||
|
Update payment method
|
||
|
</a>
|
||
|
</strong>
|
||
|
</p>
|
||
|
<% end %>
|
||
|
|
||
|
<% if @nonprofit.active_card %>
|
||
|
<hr>
|
||
|
<label>Payment Method</label>
|
||
|
<p>Current payment method for your nonprofit:
|
||
|
<strong><%= @nonprofit.active_card.name %></strong>
|
||
|
</p>
|
||
|
<% end %>
|
||
|
|
||
|
<p class='note u-marginTop--10'>If you have any questions about your current plan, please contact <a href='mailto:<%= Settings.devise.mailer_sender %>'><%= Settings.devise.mailer_sender %></a></p>
|
||
|
</div>
|
||
|
|
||
|
|