{% load media_tags %} {% load shop_tags %}
{% if item.product.image %} {% image item.product.image 'product' item.image_attribute_url %} {% else %} {% image_placeholder 'product' %} {% 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/print/order_item_barcode.html' with barcode_system=item.product.barcode_system %} {% else %} {% include 'cubane/ishop/elements/order/print/order_item_barcode.html' with barcode_system=request.settings.barcode_system %} {% endif %} {% endif %} {% endif %}

{% if item.product %} {{ item.title }} {% else %} {{ item.title }} {% endif %} {% if item.product.primary_category %} In {{ item.product.primary_category }} {% endif %} {% if settings.stocklevel %} {% if item.product.pre_order %}Pre-order{% else %}In Stock{% endif %} {% endif %}

{% if item.sku.code %}
SKU: {{ item.sku.sku_or_barcode }}
{% endif %} {% if item.product.part_number %}
Part Number: {{ item.product.part_number }}
{% endif %} {% if item.variety_assignments %}
{% for assignment in item.variety_assignments %} {% if order.is_invoice %} {% include 'cubane/ishop/elements/basket/variety.html' with hide_price='true' %} {% else %} {% include 'cubane/ishop/elements/basket/variety.html' %} {% endif %} {% endfor %}
{% endif %} {% if item.custom_properties %}
{% for property in item.custom_properties %} {% include 'cubane/ishop/elements/basket/custom_property.html' %} {% endfor %}
{% endif %} {% if item.is_non_returnable %}
This item cannot be returned.
{% endif %}

{{ item.quantity }}

{% if not order.is_invoice %}
{% if item.deposit_only %}

{% shop_price item.total_without_deposit %}

Deposit: {% shop_price item.total %}

{% else %}

{% shop_price item.total %}

{% endif %}
{% endif %}