templates/front/catalog/product/view/references.html.twig line 1

Open in your IDE?
  1. <div class="references">
  2.     {% if product.children|length %}
  3.         {% for p in product.children %}
  4.             {% if not p.isStopped() and p.isActive() and product.hasPrice(priceGroup) %}
  5.             {% include 'front/catalog/product/view/reference-line.html.twig' with {product:p} %}
  6.             {% endif %}
  7.         {% endfor %}
  8.     {% else %}
  9.         {% include 'front/catalog/product/view/reference-line.html.twig' with {product:product} %}
  10.     {% endif %}
  11. </div>