custom/plugins/MadMykey/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_menu_inner %}
  3.     {{ parent() }}
  4.     {% if not isCustomerPharmacy() and not isCustomerPartner() %}
  5.         <a href="{{ path('frontend.account.mykey') }}"
  6.            title="{{ "account.paymentLink"|trans|striptags }}"
  7.            class="list-group-item list-group-item-action account-aside-item {% if activeRoute is same as('frontend.account.mykey') %} is-active{% endif %}">
  8.             {% sw_icon 'mykey' style {'pack':'bodymed'} %}
  9.             {{ "mykey.global.title"|trans|sw_sanitize }}
  10.         </a>
  11.     {% endif %}
  12. {% endblock %}