buy now flow complete except email confirmation
This commit is contained in:
64
rowers/templates/subscriptions_cancel.html
Normal file
64
rowers/templates/subscriptions_cancel.html
Normal 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> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for subscription in subscriptions %}
|
||||
<tr>
|
||||
<td>
|
||||
{{ subscription|lookup:"plan" }}
|
||||
</td>
|
||||
<td>
|
||||
{{ subscription|lookup:"end_date" }}
|
||||
</td>
|
||||
<td>
|
||||
{{ subscription|lookup:"price" }} €
|
||||
</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 %}
|
||||
|
||||
Reference in New Issue
Block a user