{% block component_product_detail_block_price %} {% set isListPrice = price.listPrice.percentage > 0 %} {% set isRegulationPrice = price.regulationPrice != null %}
{% block component_product_detail_block_price_content %} {% if price.listprice and isListPrice %}
{{ price.unitPrice|currency }}
{% block component_product_detail_block_list_price_wrapper %} {% set afterListPriceSnippetExists = 'listing.afterListPrice'|trans|length > 0 %} {% set beforeListPriceSnippetExists = 'listing.beforeListPrice'|trans|length > 0 %} {% if beforeListPriceSnippetExists %}{{ 'listing.beforeListPrice'|trans }}{% endif %} {{ price.listprice.price|currency }} {% if afterListPriceSnippetExists %}{{ 'listing.afterListPrice'|trans }}{% endif %} {{ 'detail.listPricePercentage'|trans({'%price%': price.listPrice.percentage })|sw_sanitize }} {% endblock %} {% else %} {{ price.unitPrice|currency }} {% endif %} {% if isRegulationPrice %} {{ 'general.listPricePreviously'|trans({'%price%': price.regulationPrice.price|currency }) }} {% endif %} {% endblock %}
{% endblock %}