| 1234567891011121314151617181920 |
- {% extends "checkout/checkout.html" %}
-
- {% load currency_filters %}
-
- {% block payment_details %}
- <h3>Payment details</h3>
-
-
- <form method="post" action="{% url oscar-checkout-payment-details %}">
- {% csrf_token %}
- <h4>Bankcard</h4>
- {{ bankcard_form.as_p }}
- <h4>Billing address</h4>
- {{ billing_address_form.as_p }}
- <input type="submit" value="Place order" />
- </form>
-
- {% endblock payment_details %}
-
|