{% block page_product_detail_properties_inner %} <div class="product-detail-properties"> {% block page_product_detail_properties_container %} <div class="row product-detail-properties-container"> <div class="col-md-12 col-lg-12"> <span class="product-detail-ordernumber-label"> <div class="product-detail-description-text" itemprop="description"> <span>{{ "detail.tabsDescription"|trans|sw_sanitize }}</span> </div> {# @var product \Shopware\Core\Content\Product\SalesChannel\SalesChannelProductEntity #} <meta itemprop="productID" content="{{ page.product.id }}"/> {% block page_product_detail_properties_table %} <table class="table table-striped product-detail-properties-table"> <tbody> <tr class="properties-row"> <th class="properties-label">{{ "detail.productNumberLabel"|trans|sw_sanitize }}</th> <td class="properties-value"> {% apply spaceless %} <span> {{ page.product.productNumber }}</span> {% endapply %} </td> </tr> {% for group in page.product.sortedProperties %} {% block page_product_detail_properties_table_row %} <tr class="properties-row"> {% block page_product_detail_properties_item_label %} <th class="properties-label">{{ group.translated.name|e }}:</th> {% endblock %} {% block page_product_detail_properties_item_value %} <td class="properties-value"> {% apply spaceless %} {% for option in group.options %} {% set i = ( i | default(0) ) + 1 %} <span>{% if i > 1 %}, {% endif %}{{ option.translated.name|e }}</span> {% endfor %} {% endapply %} </td> {% endblock %} </tr> {% endblock %} {% endfor %} <tr class="properties-row"> <th class="properties-label">{{ "detail.composizione"|trans|sw_sanitize }}:</th> <td class="properties-value"> {% apply spaceless %} <span> {{ page.product.translated.customFields.migration_attribute_9_ax_composizione_160 }}</span> {% endapply %} </td> </tr> <tr class="properties-row"> <th class="properties-label">{{ "detail.dimensione"|trans|sw_sanitize }}:</th> <td class="properties-value"> {% apply spaceless %} <span> {{ page.product.translated.customFields.migration_attribute_9_ax_dimensioni_152 }}</span> {% endapply %} </td> </tr> </tbody> </table> {% endblock %} </span> </div> </div> {% endblock %} </div>{% endblock %}