{% extends "layouts/layout.html.twig" %} {% block content %} {% set product = store_product.product %} {% set product_translation = attribute(product.translations, locale_id) %} {% if product_translation is null %} {% set product_translation = product.translations|first %} {% endif %} {% set product_price = store_product.price_details|first %} {% set product_shipping_details = attribute(product_price.shipping_costs, shipping_country_id) %}

{{ page_title }}

{{ product_translation.name }}

€ {{ (product_price.total_price_in)|number_format(2, ',', '.') }}

 Incl. BTW
{% if product_price.supplier_stock %} {% if product_price.supplier_stock > 10 %}
Ruimschoots op voorraad
{% else %}
Op voorraad
{% endif %} {% if product_shipping_details.shipping_days %}
Levertijd {{ product_shipping_details.shipping_days }} werkdag(en)
{% else %}
Levertijd 1-3 werkdag(en)
{% endif %} {% else %}
Niet op voorraad
{% endif %}

{% if product_shipping_details is not null %} In winkelmand {% else %} Niet beschikbaar {% endif %}

Productspecificaties

{#
EAN
#} {#
{{ product.ean }}
#} {#
#}
SKU
{{ product.sku }}


Product beschrijving

{{ product_translation.description ? product_translation.description : product_translation.name ~ ' wordt binnen 24 uur verzonden mits op voorraad. Dat is de service van ' ~ site_name ~ '!' }}

{% endblock %} {% block post_js %} {{ parent() }} {% include 'blocks/ajax_shoppingcart.html.twig' %} {% endblock %}