templates/bundles/SyliusShopBundle/Product/Show/_priceWidget.html.twig line 1

Open in your IDE?
  1. {# <div class="ui stackable grid">
  2.     <div class="twelve wide column">
  3.         <h3>Produits du pack:</h3><br>
  4.         {% if product.productBundle %}
  5.             <div>
  6.                 <ul>
  7.                     {% for productBundleItem in product.productBundle.productBundleItems %}
  8.                         <li>
  9.                             {{ productBundleItem.productVariant.product.name }} x {{ productBundleItem.quantity }}
  10.                         </li>
  11.                     {% endfor %}
  12.                 </ul>
  13.             </div>
  14.         {% endif %}
  15.     </div>
  16. </div> #}
  17. <div class="ui stackable grid">
  18.     {# <div class="twelve wide right aligned column">
  19.         <span class="ui sub header">{{ product.code }}</span>
  20.     </div> #}
  21.     <div class="four wide column">
  22.         {% if not product.enabledVariants.empty() %}
  23.             {% include '@SyliusShop/Product/Show/_price.html.twig' %}
  24.         {% endif %}
  25.     </div>
  26. </div>