{% extends "layout.html" %} {% load currency_filters %} {% block header %}

Checkout

{% endblock header %} {% block content %}

Order contents

{% block order_contents %} {% for line in basket.lines.all %} {% endfor %} {% for discount in basket.discounts %} {% endfor %} {% if shipping_total_excl_tax %} {% endif %}
Product Availability Quantity Unit price excl tax Unit price tax Line price excl tax Line price incl tax
{{ line.description }} {{ line.product.stockrecord.availability }} {{ line.quantity }} {{ line.unit_price_excl_tax|currency }} {{ line.unit_tax|currency }} {{ line.line_price_excl_tax|currency }} {{ line.line_price_incl_tax|currency }}
{{ discount.name }} -{{ discount.discount|currency }}
Basket total {{ basket.total_excl_tax|currency }} {{ basket.total_incl_tax|currency }}
Shipping charge {{ shipping_total_excl_tax|currency }} {{ shipping_total_incl_tax|currency }}
Order total {{ order_total_incl_tax|currency }}
Edit order contents {% endblock order_contents %}

Shipping address

{% block shipping_address %} {% if shipping_address.phone_number %} {% endif %} {% if shipping_address.notes %} {% endif %}
Address {% for field in shipping_address.active_address_fields %} {{ field }}
{% endfor %}
Contact number {{ shipping_addr.phone_number }}
Shipping notes {{ shipping_addr.notes }}
Change shipping address {% endblock shipping_address %}

Shipping method

{% block shipping_method %} {% if shipping_method %}
Method Cost Description
{{ shipping_method.name }} {{ shipping_method.basket_charge_incl_tax|currency }} {{ shipping_method.description }}
{% endif %} {% endblock shipping_method %} {% block payment_method %} {% if payment_method %}

Payment method

Method: {{ payment_method }}

Change payment method

{% endif %} {% endblock payment_method %} {% block payment_details %} {% endblock payment_details %} {% block place_order %} {% endblock place_order %} {% endblock content %}