{% extends 'ecom.html.twig' %} {% block content %} {{ include('webshop/template/nakata/__filter_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 }}


{% set allSubOutStock = subProducts | length > 0 and (subProducts | filter(s => not s.outStock) | length) == 0 %} {% if allSubOutStock or (product.outStock and subProducts | length == 0) %}

Slut i lager

{% else %}
{% if subProducts | length > 0 %}
{% for subProduct in subProducts %}
{% endfor %}
{% 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 %}
{% endif %}
{{ product.description2 | raw }} {% if product.fabric is not empty %}

{{ product.fabric }}

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

{{ product.washingInstructions }}

{% endif %}
{% if relatedProducts | length > 0 %}
{% for relatedProduct in relatedProducts %} {{ include('webshop/__product_item.html.twig', {'product': relatedProduct}) }} {% else %} {{ 'No items' | trans }} {% endfor %}
{% endif %} {% endblock %} {% block custom_stylesheets %} {% endblock %} {% block custom_javascripts %} {% endblock %}