vendor/sylius/sylius/src/Sylius/Bundle/ShopBundle/Resources/views/Product/Show/_catalogPromotionLabels.html.twig line 1

Open in your IDE?
  1. <div id="appliedPromotions" data-applied-promotions-locale="{{ sylius.localeCode }}">
  2.     {% for appliedPromotion in appliedPromotions %}
  3.         <div class="ui blue label promotion_label" style="margin: 0.5rem 0;">
  4.             <div class="row ui small sylius_catalog_promotion">
  5.                 {{ appliedPromotion.label }}{% if appliedPromotion.description and withDescription %} - {{ appliedPromotion.description }}{% endif %}
  6.             </div>
  7.         </div>
  8.     {% endfor %}
  9. </div>