Private
Public Access
1
0

buy now flow complete except email confirmation

This commit is contained in:
Sander Roosendaal
2018-12-19 17:23:34 +01:00
parent fa61957be7
commit d70725f2b3
12 changed files with 512 additions and 113 deletions

View File

@@ -0,0 +1,64 @@
{% extends "newbase.html" %}
{% block title %}Rowsandall Paid Membership{% endblock title %}
{% load rowerfilters %}
{% block main %}
<h1>Cancel Subscriptions</h1>
<ul class="main-content">
<li class="grid_4">
{% if subscriptions %}
<p>
<table class="plantable shortpadded" width="80%">
<thead>
<tr>
<th>Subscription</th><th>Next Billing Date</th><th>Price</th><th>&nbsp;</th>
</tr>
</thead>
<tbody>
{% for subscription in subscriptions %}
<tr>
<td>
{{ subscription|lookup:"plan" }}
</td>
<td>
{{ subscription|lookup:"end_date" }}
</td>
<td>
{{ subscription|lookup:"price" }} &euro;
</td>
<td>
<a href="/rowers/me/cancelsubscription/{{ subscription|lookup:'id' }}">Stop this plan</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<p>
<p>
By clicking on the link to stop the plan, you will downgrade to the Basic plan.
Future payments will be stopped.
</p>
{% else %}
<p>
You don't have any subscriptions or your subscriptions cannot be automatically stopped
from the site.
</p>
<p>
If you have paid through PayPal, log in to your PayPal account and cancel the recurring payment
there. We will manually downgrade your subscription.
</p>
<p>
If you have questions, don't hesitate to contact us.
</p>
{% endif %}
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_profile.html' %}
{% endblock %}