{% extends "base.html" %} {% load quantity %} {% load item_views %} {% block pagetitle %}Confirm Order{% endblock %} {% block breadcrumbs %}
  • My Properties
  • Confirm Order
  • {% endblock %} {% block content %}

    Please check the following order details carefully before continuing.

    Package

    {% for i in order.items %} {% endfor %} {% if order.items.charges %} {% for charge, value in order.items.get_charges %} {% endfor %} {% endif %}
      Qty Price
    {% item_view view-basket-item i %} {% quantity i %} £{{i.get_total_price|floatformat:2}}
    Subtotal £{{basket.get_subtotal|floatformat:2}}
    {{charge}} £{{value|floatformat:2}}
    Total £{{order.total|floatformat:2}}

    Payment

    Card Number
    {{card.getObfuscatedPAN}}
    Billing Address
    {{card.sensitive_data.billing_address|linebreaksbr}}
    Billing Postcode
    {{card.sensitive_data.billing_postcode}}

    If you are satisfied the above details are correct, please continue to place this order.

    {% endblock %}