37 lines
854 B
HTML
37 lines
854 B
HTML
{% extends "newbase.html" %}
|
|
{% block title %}Rowsandall Paid Membership{% endblock title %}
|
|
{% load rowerfilters %}
|
|
{% block main %}
|
|
|
|
<h1>Upgrade</h1>
|
|
|
|
<form action="" method="post">
|
|
<ul class="main-content">
|
|
<li class="grid_4">
|
|
<h2>Fill in Billing Details</h2>
|
|
<p>For tax reasons, we need your country of residence</p>
|
|
<table>
|
|
{{ billingaddressform.as_table }}
|
|
</table>
|
|
</li>
|
|
<li class="grid_4">
|
|
<h2>Choose your Plan</h2>
|
|
<table width="100%">
|
|
{{ planselectform.as_table }}
|
|
</table>
|
|
</li>
|
|
<li class="grid_4">
|
|
{% 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_help.html' %}
|
|
{% endblock %}
|
|
|