vendor/store.shopware.com/coewishlistsw6/src/Resources/views/storefront/page/wishlist/overview/messages.html.twig line 1

Open in your IDE?
  1. {% block wishlist_messages %}
  2.     {% block wishlist_message_infoPublicList %}
  3.         <span {% if not page.activeList.public or page.publicAccess %}class="d-none"{% endif %} data-wishlist-visibility-info="true">
  4.             {% sw_include '@Storefront/storefront/utilities/alert.html.twig' with {
  5.                 type: "info",
  6.                 content: "coe-wishlist.overview.infoListPublic"|trans({'%link%': link})
  7.             } %}
  8.         </span>
  9.     {% endblock %}
  10.     {% block wishlist_message_infoListPublicAccess %}
  11.         <span {% if not page.publicAccess %}class="d-none"{% endif %}>
  12.             {% sw_include '@Storefront/storefront/utilities/alert.html.twig' with {
  13.                 type: "info",
  14.                 content: "coe-wishlist.overview.infoListPublicAccess"|trans
  15.             } %}
  16.         </span>
  17.     {% endblock %}
  18.     {% block wishlist_message_infoListLoginToSave %}
  19.         {% if page.activeList.customerId == null and not page.publicAccess  %}
  20.             {% sw_include '@Storefront/storefront/utilities/alert.html.twig' with {
  21.                 type: "info",
  22.                 content: "coe-wishlist.overview.infoListLoginToSave"|trans
  23.             } %}
  24.         {% endif %}
  25.     {% endblock %}
  26. {% endblock %}