{% load media_tags %} {% load shop_tags %}
{% if item.product %} {% else %}
{% endif %} {% if item.image %} {% image item.image 'product' item.image_attribute_url %} {% elif item. %} {% image_placeholder 'product' %} {% endif %} {% if item.product %} {% else %}
{% endif %}
{% if item.product %} {{ item.title }} {% else %}
{{ item.title }}
{% endif %} {% if item.product.primary_category %} In {{ item.product.primary_category }} {% endif %} {% if item.sku %}
SKU: {{ item.sku.sku_or_barcode }}
{% endif %} {% if item.part_number %}
Part Number: {{ item.part_number }}
{% endif %} {% if item.variety_assignments %}
{% for assignment in item.variety_assignments %} {% include 'cubane/ishop/elements/order/basket/basket_variety.html' %} {% endfor %}
{% endif %} {% if item.custom_properties %}
{% for property in item.custom_properties %} {% include 'cubane/ishop/elements/order/basket/custom_property.html' %} {% endfor %}
{% endif %} {% if item.is_non_returnable %}
This item cannot be returned.
{% endif %} {% if item.is_collection_only %}
This item must be collected.
{% endif %} {% if item.is_pre_order %}
This item is pre-order.
{% endif %} {% if item.is_exempt_from_free_delivery %}
This item is exempt from free delivery.
{% endif %} {% if item.is_exempt_from_discount %}
This item is exempt from discounts.
{% endif %}
{% if item.product.barcode_system or request.settings.barcode_system %} {% if item.sku.barcode or item.product.barcode %} {% if item.product.barcode_system %} {% include 'cubane/ishop/elements/order/basket/basket_item_barcode.html' with barcode_system=item.product.barcode_system %} {% else %} {% include 'cubane/ishop/elements/order/basket/basket_item_barcode.html' with barcode_system=request.settings.barcode_system %} {% endif %} {% endif %} {% endif %}
{% if basket.is_frozen %}
{{ item.quantity }}
{% else %}
- {{ item.quantity }} +
{% endif %} {% if not basket.is_invoice %}
{% if item.deposit_only %} {% shop_price item.total_without_deposit %}

Deposit: {% shop_price item.total %}

{% else %} {% shop_price item.total %} {% endif %}
{% endif %}