{% include 'cubane/form/form_fields.html' with fields='email' %}
{% include 'cubane/form/form_fields.html' with fields='title, first_name, last_name, telephone' %}
{% 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' %}
{% 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' %}
{% 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 %}
{% 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 %}