custom/static-plugins/SamsonAmpc/src/Resources/views/storefront/page/account/sidebar.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/account/sidebar.html.twig' %}
  2. {% block page_account_sidebar_link_orders %}
  3.     {{ parent() }}
  4.     {% if context.currentCustomerGroup.id is same as config('SamsonCustomer.config.myProductsCustomerGroup') %}
  5.         <a href="{{ path('frontend.my-products.list.page') }}"
  6.              title="{{ "samson.my-products.pageTitle"|trans|striptags }}"
  7.              class="list-group-item list-group-item-action account-aside-item{% if activeRoute is same as('frontend.account.sub-account.page') %} is-active{% endif %}">
  8.             {{ "samson.my-products.pageTitle"|trans|sw_sanitize }}
  9.         </a>
  10.     {% endif %}
  11. {% endblock %}