{% load shop_tags %} {% load media_tags %} {% load cms_tags %} {% load barcode_tags %}
{{ product.title }}
Edit
{% if product.image %} {% if product.gallery|length == 0 %}
{% image product.image 'product' %}
{% else %} {% for gallery_image in product.gallery %}
{% image gallery_image 'product' %}
{% endfor %} {% endif %} {% else %}
{% image_placeholder 'product' %}
{% endif %}
{% if product.gallery|length > 1 %} {% endif %} {% if product.has_excerpt or product.description %}
{% if product.has_excerpt %}
{% cms_content product.excerpt %}
{% endif %} {% if product.description %}
{% cms_content product.description %}
{% endif %}
{% endif %}
{% if product.sku_enabled and product.sku or product.part_number or product.barcode %}
{% if product.sku_enabled and product.sku %}
SKU:
{{ product.sku.sku_or_barcode }}
{% endif %} {% if product.part_number %}
Part Number:
{{ product.part_number }}
{% endif %}
{% if product.barcode %}
{% if product.barcode_system %} {% barcode_image product.barcode_system product.barcode %} {% else %} {% barcode_image request.settings.barcode_system product.barcode %} {% endif %}
{% endif %}
{% endif %} {% shop_add_to_basket product prefix 'cubane/ishop/merchant/orders/basket_editor_add_to_basket_form.html' %}