templates/front/catalog/model/view/variants/combobox.html.twig line 1

Open in your IDE?
  1. <div class="attribute attribute-combobox" data-attr="{{ attr.code }}">
  2. <div class="labels">
  3. <label>{{ attr.title }} : </label>
  4. </div>
  5. <select id="attr-{{ attr.code }}" name="{{ attr.code }}">
  6. {% for value in attr.values %}
  7. <option value="{{ value.value }}" {{ loop.first ? 'selected' : '' }} data-pid="{{ value.product.id }}">{{ value.value }}</option>
  8. {% endfor %}
  9. </select>
  10. </div>