<div class="descr-art pt-2 ">
<div class="expand-desc texte-gris">
{{ product.shortDescription | raw }}
</div>
{% for attrValue in product.attributes %}
{% if attrValue.type == "text" %}
<div class="expand-desc texte-gris desc2">
<span style="text-decoration: underline;">{{ attrValue.attribute.getTranslation('fr').name }} :</span>
<span> {{ attrValue.value }}</span>
</div>
{% elseif attrValue.type == "select" %}
{% set values = app_find_attribute_value_select_name(attrValue.attribute, sylius.localeCode, attrValue.value) %}
<div class="expand-desc texte-gris desc3">
<span style="text-decoration: underline;">{{ attrValue.attribute.getTranslation('fr').name }} :</span>
<ul>
{% for value in values %}
<li>{{ value }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endfor %}
</div>