custom/plugins/DmfManuTheme/src/Resources/views/storefront/component/product/card/badges.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/badges.html.twig' %}
  2. {% block component_product_badges_discount %}
  3.     {% set listPrice = product.priceRange or product.calculatedPrices.count > 0 ? null : product.calculatedPrice.listPrice.percentage > 0 %}
  4.     {% if listPrice %}
  5.         <div>
  6.             <span class="badge badge-danger badge-discount">{{ "listing.boxLabelSale"|trans|sw_sanitize|upper }}</span>
  7.         </div>
  8.     {% endif %}
  9. {% endblock %}
  10. {% block component_product_badges_topseller %}
  11.     {% if product.markAsTopseller %}
  12.         <div>
  13.             <span class="badge badge-warning badge-topseller">{{ "listing.boxLabelTopseller"|trans|sw_sanitize|upper }}</span>
  14.         </div>
  15.     {% endif %}
  16. {% endblock %}
  17. {% block component_product_badges_new %}
  18.     {% if product.isNew %}
  19.         <div>
  20.             <span class="badge badge-success badge-new">{{ "listing.boxLabelNew"|trans|sw_sanitize|upper }}</span>
  21.         </div>
  22.     {% endif %}
  23. {% endblock %}