custom/plugins/Biowine/src/Resources/views/storefront/component/product/card/action.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/action.html.twig' %}
  2. {% block page_product_detail_buy_product_buy_info %}
  3.     <input type="hidden"
  4.            name="lineItems[{{ id }}][id]"
  5.            value="{{ id }}">
  6.     <input type="hidden"
  7.            name="lineItems[{{ id }}][referencedId]"
  8.            value="{{ id }}">
  9.     <input type="hidden"
  10.            name="lineItems[{{ id }}][type]"
  11.            value="product">
  12.     <input type="hidden"
  13.            name="lineItems[{{ id }}][stackable]"
  14.            value="1">
  15.     <input type="hidden"
  16.            name="lineItems[{{ id }}][removable]"
  17.            value="1">
  18.     <div class="select-field ">
  19.     <select class="numberSelect" name="lineItems[{{ id }}][quantity]">
  20.         {% for i in product.minPurchase ..100 %}
  21.             <option value="{{ i }}">{{ i }}</option>
  22.         {% endfor %}
  23.     </select>
  24.     </div>
  25. {% endblock %}
  26. {% block component_product_box_action_form %}
  27.     <div class="flex inline-flex catBuy">
  28.         {{ parent() }}
  29.     </div>
  30. {% endblock %}