{% set principaleTrouvee = false %}
{% for item in produit.picture %}
{% if item.isSelected %}
{% set principaleTrouvee = true %}
{% endif %}
{% endfor %}
{% if not principaleTrouvee %}
Aucune image principale
{% endif %}
{% set array = [] %}
{% for produitDeclination in produit.produitDeclinationValues %}
{% for image in produitDeclination.picture %}
{% for groupValue in produitDeclination.groupDeclinationValues %}
{% if groupValue.declination.position == 1 and groupValue.value.name not in array %}
{% set array = array|merge([groupValue.value.name]) %}
{{ groupValue.value.name }}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}