Private
Public Access
1
0

works but cannot change address

This commit is contained in:
Sander Roosendaal
2021-03-24 06:35:25 +01:00
parent 9a06a8902f
commit a9091bfed7
12 changed files with 419 additions and 10 deletions

View File

@@ -0,0 +1,43 @@
{% extends "newbase.html" %}
{% block title %}Rowsandall Purchase Training Plan{% endblock title %}
{% load rowerfilters %}
{% block main %}
<h1>Purchase Training Plan</h1>
<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>
{{ form.as_table }}
{{ billingaddressform.as_table }}
</table>
</li>
<li class="grid_3">
<h2>Your Purchase</h2>
<p>Plan: {{ plan.name }}</p>
<p>Price: {{ plan.price }}&euro;</p>
</li>
<li>
<p>
Your purchase will be effective immediately. You will be charged
for the price of the plan.
</p>
</li>
<li class="grid_3">
{% csrf_token %}
<input type="submit" value="Proceed">
You will be able to review your order before finalizing your purchase.
</li>
</ul>
</form>
{% endblock %}
{% block sidebar %}
{% include 'menu_payments.html' %}
{% endblock %}