Private
Public Access
1
0
Files
rowsandall/rowers/templates/downgrade_completed.html
2019-02-21 17:51:51 +01:00

27 lines
647 B
HTML

{% extends "newbase.html" %}
{% block title %}Rowsandall Paid Membership{% endblock title %}
{% load rowerfilters %}
{% block main %}
<h1>Your Change was completed</h1>
<p>
Thank you for changing to {{ user.rower.paidplan.name }}. You're all settled.
You will receive an email confirming the transaction.
</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>
{% endblock %}
{% block sidebar %}
{% include 'menu_payments.html' %}
{% endblock %}