{% block component_product_properties_inner %}
<div class="product-detail-properties">
{% block component_product_properties_container %}
<div class="row product-detail-properties-container">
{% block component_product_properties_table %}
<table class="table table-striped product-detail-properties-table">
<tbody>
{# @var product \Shopware\Core\Content\Product\SalesChannel\SalesChannelProductEntity #}
{% for group in product.sortedProperties %}
{% if group.name != "Logo" %}
{% block component_product_properties_table_row %}
<tr class="properties-row">
{% block component_product_properties_item_label %}
<th class="properties-label">{{ group.translated.name|e }}:</th>
{% endblock %}
{% block component_product_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 %}
{% endif %}
{% endfor %}
{% if page.header.activeLanguage.translationCode.code == 'en-GB' %}
{% set artno = "Article number" %}
{% set features = "Features" %}
{% elseif page.header.activeLanguage.translationCode.code == 'nl-NL' %}
{% set artno = "Artikelnummer" %}
{% set features = "Functies" %}
{% elseif page.header.activeLanguage.translationCode.code == 'es-ES' %}
{% set artno = "Número de artículo" %}
{% set features = "Características" %}
{% elseif page.header.activeLanguage.translationCode.code == 'fr-FR' %}
{% set artno = "Numéro d'article" %}
{% set features = "Caractéristiques" %}
{% elseif page.header.activeLanguage.translationCode.code == 'it-IT' %}
{% set artno = "Numero dell'articolo" %}
{% set features = "Caratteristiche" %}
{% else %}
{% set artno = "Artikelnummer" %}
{% set features = "Merkmale" %}
{% endif %}
<tr class="properties-row">
<th class="properties-label">EAN:</th>
<td class="properties-value">{{ product.ean }}</td>
</tr>
<tr class="properties-row">
<th class="properties-label">{{ artno }}:</th>
<td class="properties-value">{{ product.productNumber }}</td>
</tr>
<tr class="properties-row">
<th class="properties-label">{{ features }}:</th>
<td class="properties-value">{{ product.translated.description|raw }}</td>
</tr>
</tbody>
</table>
{% endblock %}
</div>
{% endblock %}
</div>
{% endblock %}