63 lines
1.7 KiB
HTML
63 lines
1.7 KiB
HTML
|
|
{% extends "newbase.html" %}
|
|
{% block title %}Rowsandall Paid Membership{% endblock title %}
|
|
{% load rowerfilters %}
|
|
{% block main %}
|
|
|
|
<h1>Downgrade</h1>
|
|
|
|
<p>
|
|
Transactions will be procesed by Braintree (A PayPal service):
|
|
</p>
|
|
<p>
|
|
<a href="https://www.braintreegateway.com/merchants/{{ BRAINTREE_MERCHANT_ID }}/verified" target="_blank">
|
|
<img src="https://s3.amazonaws.com/braintree-badges/braintree-badge-light.png" width="164px" height ="44px" border="0"/>
|
|
</a>
|
|
</p>
|
|
|
|
<form action="" method="post">
|
|
<ul class="main-content">
|
|
<li class="grid_3">
|
|
<h2>Billing Details</h2>
|
|
<p>For tax reasons, we need your country of residence. You should
|
|
update this when it is incorrect.</p>
|
|
<table>
|
|
{{ billingaddressform.as_table }}
|
|
</table>
|
|
</li>
|
|
<li class="grid_3">
|
|
<h2>Choose your Plan</h2>
|
|
<table width="100%">
|
|
{{ planselectform.as_table }}
|
|
</table>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
Your downgrade will be effective immediately.
|
|
The price difference for the current billing cycle will
|
|
be credited to your next charge (prorated). For example,
|
|
when you downgrade from a 65€ plan to a 15€ plan
|
|
(50€ difference), in the 6th month of the 12 month
|
|
billing cycle, you will have a credit of 25€ which
|
|
will be used for the next billing cycles.
|
|
</p>
|
|
|
|
<p>
|
|
Looking for the <a href="/rowers/upgrade">upgrade</a> option?
|
|
</p>
|
|
</li>
|
|
<li class="grid_3">
|
|
{% csrf_token %}
|
|
<input type="submit" value="Proceed">
|
|
You will be able to review your order before purchase.
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_payments.html' %}
|
|
{% endblock %}
|
|
|