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

Open in your IDE?
  1. {% extends "@Storefront/storefront/component/product/card/badges.html.twig" %}
  2. {% block component_product_badges_discount %}
  3.     {% set price = product.calculatedPrice %}
  4.     {% if product.calculatedPrices.count > 0 %}
  5.         {% set price = product.calculatedPrices.last %}
  6.     {% endif %}
  7.     {% set listPrice = price.listPrice.percentage > 0 %}
  8.     {% set hasRange = product.calculatedPrices.count > 1 %}
  9.     {% if listPrice and not hasRange %}
  10.         <div class="badge badge-danger badge-discount">
  11.             {{ "detail.listPricePercentage"|trans({'%price%': price.listPrice.percentage|round })|sw_sanitize }}
  12.         </div>
  13.     {% endif %}
  14. {% endblock %}