{% extends 'cubane/ishop/pages/order/base.html' %} {% load shop_tags %} {% load form_tags %} {% load cms_tags %} {% load message_tags %} {% load form_tags %} {% block meta_title %}{% meta_title 'Checkout' %}{% endblock %} {% block title %}Checkout{% endblock %} {% block meta %}{% endblock %} {% block js %} {% endblock %} {% block frame %}
{% shop_breadcrumb 'Checkout' %} {% flash messages %}
{% auto_csrf_token %}
Customer Information
{% include 'cubane/form/form_fields.html' with fields='email' %}
{% include 'cubane/form/form_fields.html' with fields='title, first_name, last_name, telephone' %}
Billing Address
{% if is_postcode_lookup %}
{% include 'cubane/form/form_fields.html' with fields='postcode_lookup' %}
{% endif %} {% include 'cubane/form/form_fields.html' with fields='company, address1, address2, address3, city, country, county, postcode' %}
{% include 'cubane/form/form_fields.html' with fields='update_profile' %}
Delivery Address
{% include 'cubane/form/form_fields.html' with fields='deliver_to' %}
{% if basket.is_collection_only %}
We cannot deliver your order because the following item(s) are only available for click and collect:
{% for item in basket.click_and_collect_items %} {% include 'cubane/ishop/elements/basket/basket_item.html' %} {% endfor %}
{% endif %}
{% if is_postcode_lookup %}
{% include 'cubane/form/form_fields.html' with fields='delivery_postcode_lookup' %}
{% endif %} {% include 'cubane/form/form_fields.html' with fields='delivery_name, delivery_company, delivery_address1, delivery_address2, delivery_address3, delivery_city, delivery_country, delivery_county, delivery_postcode' %}
Finance Option
{% include 'cubane/form/form_fields.html' with fields='finance_option' %}
{% include 'cubane/form/form_fields.html' with fields='loan_deposit' %}

{% if basket.can_have_free_delivery_to %}
Free delivery to {{ basket.get_free_delivery_to }} is available for this order. Please enter your Free Delivery Code below: {% include 'cubane/form/form_fields.html' with fields='delivery_name, delivery_code' %}
{% endif %}
Requirements
{% include 'cubane/form/form_fields.html' with fields='special_req, survey' %}
{% include 'cubane/form/form_fields.html' with fields='newsletter' %}
{% if form.fields.discount %} {% include 'cubane/form/form_fields.html' with fields='_discount' %} {% endif %} {% include 'cubane/form/form_fields.html' with fields='signup, password, password_confirm' %} {% if request.client.has_terms %} {% include 'cubane/form/form_fields.html' with fields='_terms, terms' %} {% endif %}
{% include 'cubane/ishop/elements/basket/basket.html' %}
{% endblock %} {% block ga %} {{ block.super }} {% include 'cubane/ishop/elements/ga/checkout.js' with step='2' %} {% endblock %}