Files
GoogleAnalytics4/views/twig/d3gtmnoticelist.html.twig
2025-06-14 14:25:58 +02:00

18 lines
925 B
Twig

{% set oxidBlock_content %}
{% set template_title = "MY_WISH_LIST"|translate %}
<h1 class="page-header">{{ translate({ ident: "MY_WISH_LIST" }) }}</h1>
{% if oView.getNoticeProductList() %}
{% include "widget/product/list.html.twig" with {type: "line", listId: "noticelistProductList", title: "", products: oView.getNoticeProductList(), removeFunction: "tonoticelist", owishid: oxcmp_user.oxuser__oxid.value} %}
{% else %}
<p class="alert alert-info">{{ translate({ ident: "WISH_LIST_EMPTY" }) }}</p>
{% endif %}
{% include '@d3googleanalytics4/event/add_to_cart.html.twig' with {htmlIdAmountOfArticles: 'amountToBasket'} %}
{{ insert_tracker({title: template_title}) }}
{% endset %}
{% set oxidBlock_sidebar %}
{% include "page/account/inc/account_menu.html.twig" with {active_link: "noticelist"} %}
{% endset %}
{% include "layout/page.html.twig" with {sidebar: "Left"} %}