{# Images #}
{% if product.get_image %}
{% endif %}
{% for image in product.get_sub_images %}
{% endfor %}
{{ product.get_name }}
{# Displayed Properties #}
{% for property in product.get_displayed_properties %}
{{ property.title }}: {{ property.value }} {{ property.unit|safe }}
{% endfor %}
{% shipping product %}
{% average_for_instance product %}
{# Prices #}
{% if for_sale %}
{{ product|get_standard_price_gross:request|currency:request }}
* {% if price_unit %}/ {{ price_unit }}{% endif %}
{{ product|get_for_sale_price_gross:request|currency:request }}
* {% if price_unit %}/ {{ price_unit }}{% endif %}
{% if product.get_active_base_price %}
{{ product|get_base_price_gross:request|currency:request }} / {{ product.get_base_price_unit }}*
{% endif %}
{% if price_includes_tax %}
{% trans '*inc. VAT' %}
{% else %}
{% trans '*exc. VAT' %}
{% endif %}
{% else %}
{{ product|get_price_gross:request|currency:request }}* {% if price_unit %}/ {{ price_unit }}{% endif %}
{% if product.get_active_base_price %}
{{ product|get_base_price_gross:request|currency:request }} / {{ product.get_base_price_unit }}*
{% endif %}
{% if price_includes_tax %}
{% trans '*inc. VAT' %}
{% else %}
{% trans '*exc. VAT' %}
{% endif %}
{% endif %}
{# Configurable Properties #}
{% if product.is_configurable_product %}
{% endif %}
{% if product.is_deliverable %}
{{ packing_result }}
{% else %}
{% endif %}
{{ product.get_description|safe}}
{# Variants #}
{% if product.is_variant %}
{% trans 'Variants' %}
{# List #}
{% if display_variants_list %}
{% else %}
{% for property in properties %}
{{ property.title }}:
{% endfor %}
{% endif %}
{% endif %}
{# Attachments #}
{% if attachments %}
{% trans 'Attachments' %}
{% for attachment in attachments %}
{% if attachment.description %}
{{ attachment.description }}
{% endif %}
{% endfor %}
{% endif %}
{# Accessories #}
{% if product_accessories %}
{% trans 'Accessories' %}
{% endif %}