custom/plugins/CogiCustomObstDe/src/Resources/views/storefront/page/product-detail/additional-infos.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@CogiThemeTulip/storefront/page/product-detail/additional-infos.html.twig' %}
  2. {% block cogi_theme_tulip_additional_infos_delivery_time %}
  3.     {% if page.product.deliveryTime %}
  4.         <tr>
  5.             <td>
  6.                 <strong>{{ 'cogi.theme.tulip.detail.deliveryTime'|trans }}</strong>
  7.             </td>
  8.             <td>
  9.                 {% sw_include '@Storefront/storefront/component/delivery-information.html.twig' %}
  10.             </td>
  11.         </tr>
  12.         {% if page.product.seoCategory.id != "e4a10e3482644bcd8422369f78b0dd28" %}
  13.             <tr>
  14.                 <td colspan="2">
  15.                     {% sw_include '@Storefront/storefront/utilities/alert.html.twig' with {
  16.                         type: "success",
  17.                         content: "Wunschlieferdatum kann im letzten Bestellschritt gewählt werden"
  18.                     } %}
  19.                 </td>
  20.             </tr>
  21.         {% endif %}
  22.     {% endif %}
  23. {% endblock %}