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 422B

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