42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
{% extends "newbase.html" %}
|
|
{% block title %}Rowsandall Paid Membership{% endblock title %}
|
|
{% load rowerfilters %}
|
|
{% block main %}
|
|
|
|
<h1>Your Payment was completed</h1>
|
|
|
|
<p>
|
|
Thank you for registering to {{ user.rower.paidplan.name }}. You have paid for 12 months
|
|
membership. You were charged {{ amount }} € You will receive an email
|
|
confirming the payment.
|
|
</p>
|
|
|
|
<p>
|
|
{% if user.rower.paymenttype == 'recurring' %}
|
|
Your next payment will be automatically processed on {{ user.rower.planexpires }}
|
|
{% else %}
|
|
Your plan will end automatically on {{ user.rower.planexpires }}
|
|
{% endif %}
|
|
</p>
|
|
|
|
<p>Unless specified otherwise, the payments on the
|
|
recurring payment plans are annual. The prices are specified
|
|
as a price per year. You can downgrade or cancel your
|
|
plan at any time, through the <a href="/rowers/me/edit/">settings page</a>.
|
|
Please refer to our <a href="/rowers/legal/">terms and conditions</a> for our
|
|
<a href="/rowers/legel/#refunds">payments and refunds policy</a>.
|
|
Accepted payment methods are the payment methods offered
|
|
by
|
|
<a href="https://www.braintreegateway.com/merchants/jytq7yxsm66qqdzb/verified">Braintree</a>
|
|
through us. If you have any questions about our payments and refunds policy, please contact
|
|
us by email at support@rowsandall.com.
|
|
</p>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_payments.html' %}
|
|
{% endblock %}
|
|
|