braintree_cashier-8.x-4.x-dev/templates/braintree-cashier-thank-you-no-trial.html.twig
templates/braintree-cashier-thank-you-no-trial.html.twig
{#
/**
* @file braintree-cashier-thank-you-no-trial.html.twig
* Default theme implementation for the non-trial thank you page.
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('thank-you-no-trial') }}>
<p>{{ username }}, thank you very much for joining us!</p>
<ul>
{% if number_of_billing_cycles == 1 %}
<li>You have paid {{ amount_paid }}, and you will not be charged again.</li>
{% else %}
<li>You have paid {{ amount_paid }}, and your next payment of {{ next_billing_period_amount }} will
be <b>automatically charged</b> on {{ next_billing_date }}.
</li>
<li>You will pay {{ next_billing_period_amount }}
{% trans %}
every month
{% plural billing_frequency %}
every {{ billing_frequency }} months
{% endtrans %}
{% if never_expires %}
until you cancel your subscription.
{% else %}
for {{ number_of_billing_periods }} billing periods.
{% endif %}
You may stop the automated billing any time.
</li>
{% endif %}
<li>Please visit the <a href="{{ subscription_tab_url }}">Subscription</a> tab after
clicking <a href="/user">My Account</a> to manage your subscription.</li>
</ul>
</div>
