{% extends 'cubane/ishop/pages/order/base.html' %} {% load shop_tags %} {% load form_tags %} {% block meta_title %}InnerShed Test Payment Gateway | {{ request.settings.name }}}{% endblock %} {% block title %}InnerShed Test Payment Gateway{% endblock %} {% block meta %}{% endblock %} {% block breadcrumb %} {% shop_breadcrumb 'InnerShed Test Payment Gateway' %} {% endblock %} {% block frame %}
{% auto_csrf_token %}
Confirm Payment
Simulated Online Payment
Click on one of the buttons below in order to simulate the corresponding result when processing an online paymnet (simulated for testing purposes).
{% if order.delivery_address.name %}{% endif %}
Order and Payment Details
Order ID{{ order.order_id }}
Status{{ order.get_status_display }}
Transaction ID{{ order.transaction_id }}
Deferred Payment{{ details.preauth|yesno }}
Click and Collect{{ order.click_and_collect|yesno }}
Delivery Quote{{ order.delivery_quote|yesno }}
Finance Option{{ order.finance_option }}
Billing
Title{{ order.billing_address_title_display }}
First Name{{ order.billing_address.first_name }}
Last Name{{ order.billing_address.last_name }}
Address1{{ order.billing_address.address1 }}
Address2{{ order.billing_address.address2 }}
Address3{{ order.billing_address.address3 }}
City{{ order.billing_address.city }}
County{{ order.billing_address.county }}
Postcode{{ order.billing_address.postcode }}
Country{{ order.billing_address.country.printable_name }}
Delivery
Name{{ order.delivery_address.name }}
Address1{{ order.delivery_address.address1 }}
Address2{{ order.delivery_address.address2 }}
Address3{{ order.delivery_address.address3 }}
City{{ order.delivery_address.city }}
County{{ order.delivery_address.county }}
Postcode{{ order.delivery_address.postcode }}
Country{{ order.delivery_address.country.printable_name }}
Total
Sub Total{{ CURRENCY }}{{ order.sub_total }}
Delivery{{ CURRENCY }}{{ order.delivery }}
TOTAL{{ CURRENCY }}{{ order.total }}
{% endblock %}