custom/plugins/IeaMedical/src/Resources/views/storefront/component/buy-widget/buy-widget.html.twig line 123

Open in your IDE?
  1. {% block buy_widget %}
  2.     <div class="product-detail-buy{% if elementId %}-{{ elementId }}{% endif %} js-magnifier-zoom-image-container">
  3.         <div class="categorie-reviews d-flex">
  4.             {% set category2 = page.header.navigation.active %}
  5.             {% set product2 = page.product.active %}
  6.             {% if product2 %}
  7.                 {% for breadcrumb in category2.translated['breadcrumb'] %}
  8.                     {% if loop.last %}
  9.                         <a class="categorie-link-pd" href="/{{ breadcrumb|replace({'ä': "ae", "ö" : "oe", "ü" : "ue", "Ä" : "Ae", "Ö" : "Oe", "Ü" : "Ue", "ß" : "ss"}) }}/">{{ breadcrumb }}</a>
  10.                     {% endif %}
  11.                 {% endfor %}
  12.             {% endif %}
  13.             {% set remoteClickOptions = {
  14.                 selector: "#review-tab-" ~ product.id,
  15.                 scrollToElement: true
  16.             } %}
  17.             {% set reviewTabHref = "#review-tab-" ~ product.id ~ "-pane" %}
  18.             {% block buy_widget_reviews %}
  19.                 {% if product.ratingAverage > 0 and totalReviews > 0 and config('core.listing.showReview') %}
  20.                     <div class="product-detail-reviews">
  21.                         {% sw_include '@Storefront/storefront/component/review/rating.html.twig' with {
  22.                             points: product.ratingAverage,
  23.                             style: 'text-primary'
  24.                         } %}
  25.                         <a {{ dataBsToggleAttr }}="tab"
  26.                         class="product-detail-reviews-link"
  27.                         data-offcanvas-tabs="true"
  28.                         data-remote-click="true"
  29.                         data-remote-click-options='{{ remoteClickOptions|json_encode }}'
  30.                         href="{{ reviewTabHref }}"
  31.                         aria-controls="review-tab-pane">
  32.                         ({{ totalReviews }}
  33.                         {{ "detail.reviewLinkText"|trans({'%count%': totalReviews})|sw_sanitize }})
  34.                         </a>
  35.                     </div>
  36.                 {% endif %}
  37.             {% endblock %}
  38.         </div>
  39.         {% block buy_widget_rich_snippets %}
  40.             {% block page_product_detail_name_container %}
  41.                 <div class="col product-detail-name-container">
  42.                     {% block page_product_detail_name %}
  43.                         <h1 class="product-detail-name"
  44.                             itemprop="name">
  45.                             {{ page.product.translated.name }}
  46.                         </h1>
  47.                     {% endblock %}
  48.                 </div>
  49.             {% endblock %}
  50.             <div class="customFieldsTextPD">
  51.                 <p>{{ page.product.translated.customFields["custom_product_detail_text_1"] }}</p>
  52.             </div>
  53.             {% set sportsMediaId = page.product.translated.customFields["custom_product_detail_img_img"] %}
  54.             {% set mediaCollection = searchMedia([sportsMediaId], context.context) %}
  55.             {% set sportsMedia = mediaCollection.get(sportsMediaId) %}
  56.             {% if sportsMedia %}
  57.                 <div class="barcodeimg">
  58.                     <img src="{{ sportsMedia.url }}" alt="">
  59.                 </div>
  60.             {% endif %}
  61.             {% block buy_widget_rich_snippets_brand %}
  62.                 {% if product.manufacturer %}
  63.                     <div itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
  64.                         <meta itemprop="name" content="{{ product.manufacturer.translated.name }}"/>
  65.                     </div>
  66.                 {% endif %}
  67.             {% endblock %}
  68.             {% block buy_widget_rich_snippets_gtin13 %}
  69.                 {% if product.ean %}
  70.                     <meta itemprop="gtin13"
  71.                           content="{{ product.ean }}"/>
  72.                 {% endif %}
  73.             {% endblock %}
  74.             {% block buy_widget_rich_snippets_mpn %}
  75.                 {% if product.manufacturerNumber %}
  76.                     <meta itemprop="mpn"
  77.                           content="{{ product.manufacturerNumber }}"/>
  78.                 {% endif %}
  79.             {% endblock %}
  80.             {% block buy_widget_rich_snippets_weight %}
  81.                 {% if product.weight %}
  82.                     <meta itemprop="weight"
  83.                           content="{{ product.weight }} kg"/>
  84.                 {% endif %}
  85.             {% endblock %}
  86.             {% block buy_widget_rich_snippets_height %}
  87.                 {% if product.height %}
  88.                     <meta itemprop="height"
  89.                           content="{{ product.height }} mm"/>
  90.                 {% endif %}
  91.             {% endblock %}
  92.             {% block buy_widget_rich_snippets_width %}
  93.                 {% if product.width %}
  94.                     <meta itemprop="width"
  95.                           content="{{ product.width }} mm"/>
  96.                 {% endif %}
  97.             {% endblock %}
  98.             {% block buy_widget_rich_snippets_depth %}
  99.                 {% if product.length %}
  100.                     <meta itemprop="depth"
  101.                           content="{{ product.length }} mm"/>
  102.                 {% endif %}
  103.             {% endblock %}
  104.             {% block buy_widget_rich_snippets_release_date %}
  105.                 <meta itemprop="releaseDate"
  106.                       content="{{ product.releaseDate|format_date(pattern="Y-MM-dd", locale=app.request.locale) }}"/>
  107.             {% endblock %}
  108.         {% endblock %}
  109.         {% if not feature('FEATURE_NEXT_16992') %}
  110.             {# @deprecated tag:v6.5.0 tag:)(FEATURE_NEXT_16992) - Block will be removed in v6.5.0 #}
  111.             {% block buy_widget_not_available %}
  112.             {% endblock %}
  113.         {% endif %}
  114.         {% block buy_widget_buy_container %}
  115.             <div class="form-quantity-add-to-cart" itemprop="offers"
  116.                  itemscope
  117.                  itemtype="{% if product.calculatedPrices|length > 1 %}http://schema.org/AggregateOffer{% else %}http://schema.org/Offer{% endif %}">
  118.                 {% block buy_widget_data %}
  119.                     {% block buy_widget_data_rich_snippet_url %}
  120.                         <meta itemprop="url"
  121.                               content="{{ seoUrl('frontend.detail.page', { productId: product.id }) }}"/>
  122.                     {% endblock %}
  123.                     {% block buy_widget_data_rich_snippet_price_range %}
  124.                         {% if product.calculatedPrices|length > 1 %}
  125.                             {% set lowestPrice = false %}
  126.                             {% set highestPrice = false %}
  127.                             {% for price in product.calculatedPrices %}
  128.                                 {% if not lowestPrice or price.unitPrice < lowestPrice %}
  129.                                     {% set lowestPrice = price.unitPrice %}
  130.                                 {% endif %}
  131.                                 {% if not highestPrice or price.unitPrice > highestPrice %}
  132.                                     {% set highestPrice = price.unitPrice %}
  133.                                 {% endif %}
  134.                             {% endfor %}
  135.                             <meta itemprop="lowPrice" content="{{ lowestPrice }}"/>
  136.                             <meta itemprop="highPrice" content="{{ highestPrice }}"/>
  137.                             <meta itemprop="offerCount" content="{{ product.calculatedPrices|length }}"/>
  138.                         {% endif %}
  139.                     {% endblock %}
  140.                     {% block buy_widget_data_rich_snippet_price_currency %}
  141.                         <meta itemprop="priceCurrency"
  142.                               content="{{ context.currency.translated.shortName }}"/>
  143.                     {% endblock %}
  144.                     {% block buy_widget_price %}
  145.                         <div class="product-detail-price-container">
  146.                             {% sw_include '@Storefront/storefront/component/buy-widget/buy-widget-price.html.twig' %}
  147.                             <div class="price-pcs">
  148.                                 <p>{{ "IeaMedical.price_pcs_text1"|trans|raw }}<span class="price_for1pcs">0,86</span> €{{ "IeaMedical.price_pcs_text2"|trans|raw }} <span class="price_forboxpcs">0,86 €</span></p>
  149.                             </div>
  150.                         </div>
  151.                     {% endblock %}
  152.                     {% block buy_widget_tax %}
  153.                         <div class="product-detail-tax-container">
  154.                             {% if context.taxState == "gross" %}
  155.                                 {% set taxText = "general.grossTaxInformation"|trans|sw_sanitize %}
  156.                             {% else %}
  157.                                 {% set taxText = "general.netTaxInformation"|trans|sw_sanitize %}
  158.                             {% endif %}
  159.                             <p class="product-detail-tax">
  160.                                 {% block buy_widget_tax_link %}
  161.                                     <a class="product-detail-tax-link"
  162.                                        href="{{ path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') }) }}"
  163.                                        title="{{ taxText }}"
  164.                                     {{ dataBsToggleAttr }}="modal"
  165.                                     data-url="{{ path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') }) }}">
  166.                                     {{ taxText }}
  167.                                     </a>
  168.                                 {% endblock %}
  169.                             </p>
  170.                         </div>
  171.                     {% endblock %}
  172.                     {% block buy_widget_delivery_informations %}
  173.                         <div class="product-detail-delivery-information">
  174.                             {% sw_include '@Storefront/storefront/component/delivery-information.html.twig' %}
  175.                         </div>
  176.                     {% endblock %}
  177.                 {% endblock %}
  178.                 {% block buy_widget_configurator_include %}
  179.                     {% if product.parentId and configuratorSettings|length > 0 %}
  180.                         <div class="product-detail-configurator-container col-md-auto">
  181.                             {% block buy_widget_configurator %}
  182.                                 <div class="product-detail-configurator">
  183.                                     {% if elementId is defined and elementId is not null and pageType != 'product_detail' %}
  184.                                         {% set config = {
  185.                                             url: url('frontend.cms.buybox.switch', { productId: product.parentId }),
  186.                                             elementId: elementId,
  187.                                             pageType: pageType
  188.                                         } %}
  189.                                     {% else %}
  190.                                         {% set config = {
  191.                                             url: url('frontend.detail.switch', { productId: product.parentId }),
  192.                                             pageType: pageType
  193.                                         } %}
  194.                                     {% endif %}
  195.                                     {% block buy_widget_configurator_form %}
  196.                                         <form data-variant-switch="true"
  197.                                               data-variant-switch-options="{{ config|json_encode }}">
  198.                                             {% block buy_widget_configurator_csrf %}
  199.                                                 {% if elementId is defined and elementId is not null %}
  200.                                                     {{ sw_csrf('frontend.cms.buybox.switch') }}
  201.                                                 {% else %}
  202.                                                     {{ sw_csrf('frontend.detail.switch') }}
  203.                                                 {% endif %}
  204.                                             {% endblock %}
  205.                                             {% block buy_widget_configurator_groups %}
  206.                                                 {% for group in configuratorSettings %}
  207.                                                     {% block buy_widget_configurator_group %}
  208.                                                         <div class="product-detail-configurator-group">
  209.                                                             {% if group.displayType == 'select' %}
  210.                                                                 {% sw_include '@Storefront/storefront/page/product-detail/configurator/select.html.twig' %}
  211.                                                             {% else %}
  212.                                                                 {% block buy_widget_configurator_group_title %}
  213.                                                                     <div class="product-detail-configurator-group-title">
  214.                                                                         {% block buy_widget_configurator_group_title_text %}
  215.                                                                             {{ group.translated.name }}
  216.                                                                         {% endblock %}
  217.                                                                     </div>
  218.                                                                 {% endblock %}
  219.                                                                 {% block buy_widget_configurator_options %}
  220.                                                                     <div class="product-detail-configurator-options">
  221.                                                                         {% for option in group.options %}
  222.                                                                             {% if elementId is defined and elementId is not null %}
  223.                                                                                 {% set optionIdentifier = [group.id, option.id, elementId]|join('-') %}
  224.                                                                             {% else %}
  225.                                                                                 {% set optionIdentifier = [group.id, option.id]|join('-') %}
  226.                                                                             {% endif %}
  227.                                                                             {% set isActive = false %}
  228.                                                                             {% set isCombinableCls = 'is-combinable' %}
  229.                                                                             {% if option.id in product.optionIds %}
  230.                                                                                 {% set isActive = true %}
  231.                                                                             {% endif %}
  232.                                                                             {% if not option.combinable %}
  233.                                                                                 {% set isCombinableCls = false %}
  234.                                                                             {% endif %}
  235.                                                                             {% if option.configuratorSetting.media %}
  236.                                                                                 {% set displayType = 'media' %}
  237.                                                                                 {% set media = option.configuratorSetting.media %}
  238.                                                                             {% else %}
  239.                                                                                 {% set displayType = group.displayType %}
  240.                                                                                 {% if option.media %}
  241.                                                                                     {% set media = option.media %}
  242.                                                                                 {% else %}
  243.                                                                                     {% set media = false %}
  244.                                                                                 {% endif %}
  245.                                                                             {% endif %}
  246.                                                                             {% block buy_widget_configurator_option %}
  247.                                                                                 <div class="product-detail-configurator-option">
  248.                                                                                     {% block buy_widget_configurator_option_radio %}
  249.                                                                                         <input type="radio"
  250.                                                                                                name="{{ group.id }}"
  251.                                                                                                value="{{ option.id }}"
  252.                                                                                                class="product-detail-configurator-option-input{% if isCombinableCls %} {{ isCombinableCls }}{% endif %}"
  253.                                                                                                title="{{ optionIdentifier }}"
  254.                                                                                                id="{{ optionIdentifier }}"
  255.                                                                                                {% if isActive %}checked="checked"{% endif %}>
  256.                                                                                         {% block buy_widget_configurator_option_radio_label %}
  257.                                                                                             <label class="product-detail-configurator-option-label{% if isCombinableCls %} {{ isCombinableCls }}{% endif %} is-display-{{ displayType }}"
  258.                                                                                                     {% if displayType == 'color' and option.colorHexCode %}
  259.                                                                                                         style="background-color: {{ option.colorHexCode }}"
  260.                                                                                                     {% endif %}
  261.                                                                                                    title="{{ option.translated.name }}"
  262.                                                                                                    for="{{ optionIdentifier }}">
  263.                                                                                                 {% if displayType == 'media' and media %}
  264.                                                                                                     {% block buy_widget_configurator_option_radio_label_media %}
  265.                                                                                                         {% sw_thumbnails 'configurator-option-img-thumbnails' with {
  266.                                                                                                             media: media,
  267.                                                                                                             sizes: {
  268.                                                                                                                 'default': '52px'
  269.                                                                                                             },
  270.                                                                                                             attributes: {
  271.                                                                                                                 'class': 'product-detail-configurator-option-image',
  272.                                                                                                                 'alt': option.translated.name,
  273.                                                                                                                 'title': option.translated.name
  274.                                                                                                             }
  275.                                                                                                         } %}
  276.                                                                                                     {% endblock %}
  277.                                                                                                 {% elseif displayType == 'text' or
  278.                                                                                                     (displayType == 'media' and not media) or
  279.                                                                                                     (displayType == 'color' and not option.colorHexCode) %}
  280.                                                                                                     {% block buy_widget_configurator_option_radio_label_text %}
  281.                                                                                                         {{ option.translated.name }}
  282.                                                                                                     {% endblock %}
  283.                                                                                                 {% endif %}
  284.                                                                                             </label>
  285.                                                                                         {% endblock %}
  286.                                                                                     {% endblock %}
  287.                                                                                 </div>
  288.                                                                             {% endblock %}
  289.                                                                         {% endfor %}
  290.                                                                     </div>
  291.                                                                 {% endblock %}
  292.                                                             {% endif %}
  293.                                                         </div>
  294.                                                     {% endblock %}
  295.                                                 {% endfor %}
  296.                                             {% endblock %}
  297.                                         </form>
  298.                                     {% endblock %}
  299.                                 </div>
  300.                             {% endblock %}
  301.                         </div>
  302.                     {% endif %}
  303.                 {% endblock %}
  304.                 {% block buy_widget_buy_form %}
  305.                     {% if product.active %}
  306.                         <div class="product-detail-form-container">
  307.                             {% block page_product_detail_buy_form_inner %}
  308.                                 {# @var page \Shopware\Storefront\Page\Product\ProductPage #}
  309.                                 {# @var product \Shopware\Core\Content\Product\SalesChannel\SalesChannelProductEntity #}
  310.                                 {% set product = page.product %}
  311.                                 <form
  312.                                         id="productDetailPageBuyProductForm"
  313.                                         action="{% block page_product_detail_buy_form_action %}{{ path('frontend.checkout.line-item.add') }}{% endblock %}"
  314.                                         method="post"
  315.                                         class="buy-widget"
  316.                                         data-add-to-cart="true">
  317.                                     {% block page_product_detail_buy_form_inner_csrf %}
  318.                                         {{ sw_csrf('frontend.checkout.line-item.add') }}
  319.                                     {% endblock %}
  320.                                     {% set buyable = product.available and product.childCount <= 0 and product.calculatedMaxPurchase > 0 %}
  321.                                     {% block page_product_detail_buy_container %}
  322.                                         {% if buyable %}
  323.                                             <div class="{{ formRowClass }} buy-widget-container d-flex">
  324.                                                 {% block page_product_detail_buy_quantity_container %}
  325.                                                     <div class="col-md-6 inputpcs">
  326.                                                         <label>
  327.                                                             {{ "IeaMedical.pcs"|trans|raw }}
  328.                                                         </label>
  329.                                                         {% set selectQuantityThreshold = 100 %}
  330.                                                         {% block page_product_detail_buy_quantity %}
  331.                                                             {% if (product.calculatedMaxPurchase - product.minPurchase) / product.purchaseSteps > selectQuantityThreshold %}
  332.                                                                 {% block page_product_detail_buy_quantity_input_group %}
  333.                                                                     <div class="input-group">
  334.                                                                         {% block page_product_detail_buy_quantity_input %}
  335.                                                                             <input
  336.                                                                                     type="number"
  337.                                                                                     name="lineItems[{{ product.id }}][quantity]"
  338.                                                                                     class="form-control product-detail-quantity-input"
  339.                                                                                     min="{{ product.minPurchase }}"
  340.                                                                                     max="{{ product.calculatedMaxPurchase }}"
  341.                                                                                     step="{{ product.purchaseSteps }}"
  342.                                                                                     value="{{ product.minPurchase }}"
  343.                                                                             />
  344.                                                                         {% endblock %}
  345.                                                                         {% block page_product_detail_buy_quantity_input_unit %}
  346.                                                                             {% if product.translated.packUnit %}
  347.                                                                                 {% if not feature('v6.5.0.0') %}
  348.                                                                                     <div class="input-group-append">
  349.                                                                                 {% endif %}
  350.                                                                                 <span class="input-group-text">
  351.                                                             {% if product.minPurchase > 1 and product.translated.packUnitPlural %}
  352.                                                                 {{ product.translated.packUnitPlural }}
  353.                                                             {% elseif product.translated.packUnit %}
  354.                                                                 {{ product.translated.packUnit }}
  355.                                                             {% endif %}
  356.                                                         </span>
  357.                                                                                 {% if not feature('v6.5.0.0') %}
  358.                                                                                     </div>
  359.                                                                                 {% endif %}
  360.                                                                             {% endif %}
  361.                                                                         {% endblock %}
  362.                                                                     </div>
  363.                                                                 {% endblock %}
  364.                                                             {% else %}
  365.                                                                 {% block page_product_detail_buy_quantity_select %}
  366.                                                                     <select name="lineItems[{{ product.id }}][quantity]"
  367.                                                                             class="{{ formSelectClass }} product-detail-quantity-select">
  368.                                                                         {% for quantity in range(product.minPurchase, product.calculatedMaxPurchase, product.purchaseSteps) %}
  369.                                                                             <option value="{{ quantity }}">
  370.                                                                                 {{ quantity }}
  371.                                                                                 {% if quantity == 1 %}
  372.                                                                                     {% if product.translated.packUnit %} {{ product.translated.packUnit }}{% endif %}
  373.                                                                                 {% else %}
  374.                                                                                     {% if product.translated.packUnitPlural %}
  375.                                                                                         {{ product.translated.packUnitPlural }}
  376.                                                                                     {% elseif product.translated.packUnit %}
  377.                                                                                         {{ product.translated.packUnit }}
  378.                                                                                     {% endif %}
  379.                                                                                 {% endif %}
  380.                                                                             </option>
  381.                                                                         {% endfor %}
  382.                                                                     </select>
  383.                                                                 {% endblock %}
  384.                                                             {% endif %}
  385.                                                         {% endblock %}
  386.                                                     </div>
  387.                                                 {% endblock %}
  388.                                                 {% block page_product_detail_buy_redirect_input %}
  389.                                                     {# fallback redirect back to detail page is deactivated via js #}
  390.                                                     <input type="hidden"
  391.                                                            name="redirectTo"
  392.                                                            value="frontend.detail.page">
  393.                                                     <input type="hidden"
  394.                                                            name="redirectParameters"
  395.                                                            data-redirect-parameters="true"
  396.                                                            value='{"productId": "{{ product.id }}"}'>
  397.                                                 {% endblock %}
  398.                                                 {% block page_product_detail_buy_product_buy_info %}
  399.                                                     <input type="hidden"
  400.                                                            name="lineItems[{{ product.id }}][id]"
  401.                                                            value="{{ product.id }}">
  402.                                                     <input type="hidden"
  403.                                                            name="lineItems[{{ product.id }}][type]"
  404.                                                            value="product">
  405.                                                     <input type="hidden"
  406.                                                            name="lineItems[{{ product.id }}][referencedId]"
  407.                                                            value="{{ product.id }}">
  408.                                                     <input type="hidden"
  409.                                                            name="lineItems[{{ product.id }}][stackable]"
  410.                                                            value="1">
  411.                                                     <input type="hidden"
  412.                                                            name="lineItems[{{ product.id }}][removable]"
  413.                                                            value="1">
  414.                                                 {% endblock %}
  415.                                                 {% block page_product_detail_product_buy_meta %}
  416.                                                     <input type="hidden"
  417.                                                            name="product-name"
  418.                                                            value="{{ product.translated.name }}">
  419.                                                     <input type="hidden"
  420.                                                            name="brand-name"
  421.                                                            value="{{ product.manufacturer.getName() }}">
  422.                                                 {% endblock %}
  423.                                                 {% block page_product_detail_buy_button_container %}
  424.                                                     <div class="col-md-12 btn-add-cartt">
  425.                                                         {% block page_product_detail_buy_button %}
  426.                                                             {# @deprecated tag:v6.5.0 - Bootstrap v5 removes `btn-block` class, use `d-grid` wrapper instead #}
  427.                                                             {% if feature('v6.5.0.0') %}
  428.                                                                 <div class="d-grid">
  429.                                                                     <button class="btn btn-primary btn-buy"
  430.                                                                             title="{{ "detail.addProduct"|trans|striptags }}"
  431.                                                                             aria-label="{{ "detail.addProduct"|trans|striptags }}">
  432.                                                                         {{ "detail.addProduct"|trans|sw_sanitize }}
  433.                                                                     </button>
  434.                                                                 </div>
  435.                                                             {% else %}
  436.                                                                 <button class="btn btn-primary btn-block btn-buy"
  437.                                                                         title="{{ "detail.addProduct"|trans|striptags }}"
  438.                                                                         aria-label="{{ "detail.addProduct"|trans|striptags }}">
  439.                                                                     {{ "detail.addProduct"|trans|sw_sanitize }}
  440.                                                                 </button>
  441.                                                             {% endif %}
  442.                                                         {% endblock %}
  443.                                                     </div>
  444.                                                 {% endblock %}
  445.                                             </div>
  446.                                         {% endif %}
  447.                                     {% endblock %}
  448.                                 </form>
  449.                             {% endblock %}
  450.                         </div>
  451.                     {% endif %}
  452.                 {% endblock %}
  453.             </div>
  454.         {% endblock %}
  455.         {#        {% if config('core.cart.wishlistEnabled') %} #}
  456.         {#            {% block buy_widget_wishlist %} #}
  457.         {#                {% sw_include '@Storefront/storefront/component/product/card/wishlist.html.twig' with { #}
  458.         {#                    showText: true, #}
  459.         {#                    size: 'md', #}
  460.         {#                    productId: product.id #}
  461.         {#                } %} #}
  462.         {#            {% endblock %} #}
  463.         {#        {% endif %} #}
  464.         {% block buy_widget_ordernumber_container %}
  465.             {% if product.productNumber %}
  466.                 <div class="product-detail-payment-logo">
  467.                     {{ "IeaMedical.product-detail-payment-logo"|trans|raw }}
  468.                 </div>
  469.                 <div class="product-detail-ordernumber-container">
  470.                     <div class="img">
  471.                         {{ "IeaMedical.product_detail_ordernumber_icon"|trans|raw }}
  472.                     </div>
  473.                     <div class="content">
  474.                         <h6>{{ "IeaMedical.product_detail_ordernumber_text_1"|trans|raw }}</h6>
  475.                         <p>{{ "IeaMedical.product_detail_ordernumber_text_2"|trans|raw }}</p>
  476.                     </div>
  477.                     {#                    {% block buy_widget_ordernumber_label %} #}
  478.                     {#                        <span class="product-detail-ordernumber-label"> #}
  479.                     {#                            {{ "detail.productNumberLabel"|trans|sw_sanitize }} #}
  480.                     {#                        </span> #}
  481.                     {#                    {% endblock %} #}
  482.                     {#                    {% block buy_widget_ordernumber %} #}
  483.                     {#                        <meta itemprop="productID" #}
  484.                     {#                              content="{{ product.id }}"/> #}
  485.                     {#                        <span class="product-detail-ordernumber" #}
  486.                     {#                              itemprop="sku"> #}
  487.                     {#                            {{ product.productNumber }} #}
  488.                     {#                        </span> #}
  489.                     {#                    {% endblock %} #}
  490.                 </div>
  491.             {% endif %}
  492.         {% endblock %}
  493.     </div>
  494.     <div class="fixed-bottom product-detail-box-add-to-cart">
  495.     </div>
  496. {% endblock %}