themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Product/Show/_imageVariants.html.twig line 1

Open in your IDE?
  1. <div class="sylius-image-variants">
  2. {% if product.getVariantSelectionMethod() == 'match' %}
  3.     {% for variant in image.productVariants %}
  4.     <div data-variant-options="{% for option in variant.optionValues %}{{ option.code }} {% endfor %}"></div>
  5.     {% endfor %}
  6. {% else %}
  7.     {% for variant in image.productVariants %}
  8.     <div data-variant-code="{{ variant.code }}"></div>
  9.     {% endfor %}
  10. {% endif %}
  11. </div>