{% extends "@Storefront/storefront/component/product/card/badges.html.twig" %}
{% block component_product_badges_discount %}
{% set price = product.calculatedPrice %}
{% if product.calculatedPrices.count > 0 %}
{% set price = product.calculatedPrices.last %}
{% endif %}
{% set listPrice = price.listPrice.percentage > 0 %}
{% set hasRange = product.calculatedPrices.count > 1 %}
{% if listPrice and not hasRange %}
<div class="badge badge-danger badge-discount">
{{ "detail.listPricePercentage"|trans({'%price%': price.listPrice.percentage|round })|sw_sanitize }}
</div>
{% endif %}
{% endblock %}