custom/plugins/FourtwosixThemeExtension/src/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_table %}
  3.     <table class="table table-striped product-detail-properties-table">
  4.         <tbody>
  5.         {# @var product \Shopware\Core\Content\Product\SalesChannel\SalesChannelProductEntity #}
  6.         {% for group in page.product.sortedProperties %}
  7.             {% block page_product_detail_properties_table_row %}
  8.                 {{ parent() }}
  9.             {% endblock %}
  10.         {% endfor %}
  11.         {# @fourtwosix-edit: add some custom fields to properties ----------- #}
  12.         {% sw_include  '@FourtwosixThemeExtension/storefront/page/product-detail/fts-properties-from-custom-fields.html.twig' %}
  13.         {# @fourtwosix-edit: end -------------------------------------------- #}
  14.         </tbody>
  15.     </table>
  16. {% endblock %}