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_cheque.html 426B

1234567891011121314151617
  1. {% extends "checkout/checkout.html" %}
  2. {% load currency_filters %}
  3. {% block payment_details %}
  4. <form method="post" action="{% url oscar-checkout-payment-details %}">
  5. <h4>Notes</h4>
  6. <p>Note that cheques need to be sent to this address - your order
  7. won't be released until the cheque has cleared.</p>
  8. {% csrf_token %}
  9. <input type="submit" value="Place order" />
  10. </form>
  11. {% endblock payment_details %}