{% sw_extends '@Storefront/storefront/page/product-detail/properties.html.twig' %}{% block page_product_detail_properties_inner %} {% block page_product_detail_properties_container %} {% block page_product_detail_properties_table %} <table> <thead></thead> <tbody> {# @var product \Shopware\Core\Content\Product\SalesChannel\SalesChannelProductEntity #} {% for group in page.product.sortedProperties %} {% block page_product_detail_properties_table_row %} <tr> {% block page_product_detail_properties_item_label %} <td>{{ group.translated.name|e }}:</td> {% endblock %} {% block page_product_detail_properties_item_value %} <td> {% 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 %} </tbody> </table> {% endblock %} {% endblock %}{% endblock %}