custom/plugins/ZweiPunktCurchod/src/Resources/views/storefront/page/product-detail/buy-widget-price.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/buy-widget-price.html.twig' %}
  2. {% block page_product_detail_was_price_badge %}
  3. {% endblock %}
  4. {% block page_product_detail_was_price_wrapper %}
  5.     <span class="product-detail-list-price-wrapper">
  6.         {% if beforeListPriceSnippetExists %}{{"listing.beforeListPrice"|trans|trim}}{% endif %}
  7.         <span class="statt">statt</span><span{% if not (afterListPriceSnippetExists or beforeListPriceSnippetExists) %} class="list-price-price"{% endif %}>{{ listPrice.price|currency }}{{ "general.star"|trans|sw_sanitize }}</span>
  8.         {% if afterListPriceSnippetExists %}
  9.             {{"listing.afterListPrice"|trans|trim}}
  10.         {% endif %}
  11.     </span>
  12.     <div class="list-price-percentage ">
  13.         {% block page_product_detail_was_price_badge2 %}
  14.             <span class="list-price-badge">&#37;</span>
  15.         {% endblock %}
  16.         {{ "cur.detail.price.ersparnis"|trans|raw }} {{ (listPrice.discount  * -1) |currency}}
  17.     </div>
  18. {% endblock %}