custom/plugins/DvsnBundle/src/Resources/views/storefront/page/product-detail/index.html.twig line 1

Open in your IDE?
  1. {# file to extend #}
  2. {% sw_extends '@Storefront/storefront/page/product-detail/index.html.twig' %}
  3. {# ... #}
  4. {% block page_product_detail_tabs %}
  5.     {% if page.dvsnBundle is defined and page.dvsnBundle is iterable and page.dvsnBundle|length > 0 %}
  6.         {% sw_include '@Storefront/storefront/component/dvsn/bundle/bundles.html.twig' with {
  7.             'parent': page.product,
  8.             'config': page.dvsnBundleConfiguration,
  9.             'bundles': page.dvsnBundle
  10.         } %}
  11.     {% endif %}
  12.     {{ parent() }}
  13. {% endblock %}