{% extends "web/layout.html.twig" %} {% block meta %} Tienda - {{ category.name }} - {{ product.name }} {% endblock %} {% block mkt_events %} {% endblock %} {% block content %}

{{ product.name }}

{% if product.offerPrice %}
$ {{ product.price | format_number }}

$ {{ product.offerPrice | format_number }}

$ {{ (product.offerPrice - (product.offerPrice * discount_rate.value))| format_number }} {{ 'pay-transfers'|trans({}, 'item-product') }}

{% else %}

$ {{ product.price | format_number }}

$ {{ (product.price - (product.price * discount_rate.value))| format_number }} {{ 'pay-transfers'|trans({}, 'item-product') }}

{% endif %}
{{ (product.shortDescription is not null) ? product.shortDescription|raw : '' }}
{% set variants = [] %} {% for variant in product.productVariants %} {% set variantData = {id: variant.id, name: (variant.size is not null? variant.size.name: variant.name), stock: variant.stock.available, description: variant.shortDescription } %} {% set variants = variants|merge([variantData]) %} {% endfor %}
!{{ 'important'|trans({}, 'item-product') }}!

Medite el pie antes de finalizar tu proceso de compra. Hacé click en {{ 'size-guide'|trans({}, 'home') }} y seguí las instrucciones. De esta manera evitamos posibles cambios y devoluciones.

{{ (product.description is not null) ? product.description|raw : '' }}

{% if product.productType.value == 1 and product.productVariants[0].size is not null %} {% endif %}
Peso {{ product.weight }} kg
Dimensiones de envío {{ product.length }} × {{ product.width }} × {{ product.height }} cm
Talle {% for productVariant in product.productVariants %} {{ productVariant.size.name }} {% if not loop.last %},{% endif %} {% endfor %}
{% if relatedProducts|length > 0 %} {% endif %} {% endblock %}