custom/plugins/ZweiPunktBettenAbc/src/Resources/views/storefront/component/delivery-information.html.twig line 1

Open in your IDE?
  1. {% sw_extends "@Storefront/storefront/component/delivery-information.html.twig" %}
  2. {% block component_delivery_information %}
  3.     {% if page.product.restockTime >= 99 and page.product.availableStock < 1 %}
  4.         <div class="product-delivery-information">
  5.             <link itemprop="availability" href="http://schema.org/LimitedAvailability"/>
  6.             <span class="delivery-status-indicator bg-danger"></span>
  7.             <span class="delivery-status-label">{{ "zweipunkt.detail.soonAvailable"|trans|sw_sanitize }}</span>
  8.         </div>
  9.     {% else %}
  10.         {{ parent() }}
  11.     {% endif %}
  12. {% endblock %}