{% extends 'ecom.html.twig' %} {% block content %} {{ include('webshop/__categories.html.twig') }}

{{ product.name }}

{% if product.priceEcomOriginal is not empty and product.priceEcomOriginal > 0 %} {{ product.priceEcomOriginal }} {{ 'kr' | trans }} {{ product.priceEcomIncTax }} {{ 'kr' | trans }} {% else %} {{ product.priceEcomIncTax }} {{ 'kr' | trans }} {% endif %}

{{ 'SKU' | trans }}: {{ product.sku }}


{{ product.description2 | raw }} {% if product.fabric is not empty %}

{{ product.fabric }}

{% endif %} {% if product.washingInstructions is not empty %}

{{ product.washingInstructions }}

{% endif %}
{% if subProducts | length > 0 %}
{% endif %} {% for addOnProduct in addOnProducts %} {% if addOnProduct.addOnProductType == constant('App\\Entity\\Product::ADDON_PRODUCT_TYPE_INPUT') %}
{% elseif addOnProduct.addOnProductType == constant('App\\Entity\\Product::ADDON_PRODUCT_TYPE_OPTION') %}
{% endif %} {% endfor %}
{% endblock %} {% block custom_stylesheets %} {% endblock %} {% block custom_javascripts %} {% endblock %}