{% sw_extends '@Storefront/storefront/page/product-detail/properties.html.twig' %}
{% block page_product_detail_properties_table %}
<div class="h3 product-detail-description-title">
{{ "proclane-wegmann-theme.pages.product-detail.propertiesTitle"|trans|sw_sanitize }}
</div>
<div class="h4 mt-4">
"{{ page.product.translated.name }}"
</div>
<table class="table table-striped product-detail-properties-table">
<tbody>
{# @var product \Shopware\Core\Content\Product\SalesChannel\SalesChannelProductEntity #}
{% for group in page.product.sortedProperties %}
{% block page_product_detail_properties_table_row %}
{# the core block is cleared as properties are loaded from custom fields #}
{# {{ parent() }} #}
{% endblock %}
{% endfor %}
{% block proclane_page_product_detail_properties_technical_information %}
{# variable 'productTechnicalInformation' is defined in description.html.twig #}
{% for technicalInformation in productTechnicalInformation %}
<tr class="properties-row">
{% block proclane_page_product_detail_properties_item_label %}
<th class="properties-label">{{ technicalInformation['name']|e }}:</th>
{% endblock %}
{% block proclane_page_product_detail_properties_item_value %}
<td class="properties-value">
{{ technicalInformation['value']|e }}
</td>
{% endblock %}
</tr>
{% endfor %}
{% endblock %}
</tbody>
</table>
{% endblock %}