custom/static-plugins/EfbStorefront/Resources/views/storefront/page/product-detail/properties.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/properties.html.twig' %}
  2. {% block page_product_detail_properties_item_value %}
  3.     <td class="properties-value">
  4.         {% apply spaceless %}
  5.             {% for option in group.options %}
  6.                 {% set i = ( i | default(0) ) + 1 %}
  7.                 <span>{% if i > 1 %}<br>{% endif %}{{ option.translated.name|e }}</span>
  8.             {% endfor %}
  9.         {% endapply %}
  10.     </td>
  11. {% endblock %}