You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

payment_details.html 495B

123456789101112131415161718192021222324
  1. {% extends "oscar/checkout/checkout.html" %}
  2. {% load currency_filters %}
  3. {% block payment_details %}
  4. <h3>Payment details</h3>
  5. {% if payment_error %}
  6. <p>{{ payment_error }}</p>
  7. {% endif %}
  8. <form method="post" action="{% url oscar-checkout-payment-details %}">
  9. {% csrf_token %}
  10. <h4>Bankcard</h4>
  11. {{ bankcard_form.as_p }}
  12. <h4>Billing address</h4>
  13. {{ billing_address_form.as_p }}
  14. <input type="submit" value="Place order" />
  15. </form>
  16. {% endblock payment_details %}