custom/plugins/CioBudget/src/Resources/views/storefront/page/account/sidebar.html.twig line 1

Open in your IDE?
  1. {% sw_extends 'storefront/page/account/sidebar.html.twig' %}
  2. {% block page_account_sidebar_menu_inner %}
  3.     {{ parent() }}
  4.     {% block page_account_sidebar_link_budgetcustomers %}
  5.         {% if cioBudgetsCurrentAvailable(context) %}
  6.         <a href="{{ path('storefront.account.budgetcustomers.grid') }}"
  7.            title="{{ 'account.accountBudgetTitle' | trans }}"
  8.            class="list-group-item list-group-item-action account-aside-item{% if activeRoute is same as('storefront.account.budgetcustomers.grid') %} is-active{% endif %}">
  9.             {{ 'account.accountWelcomeTitle' | trans }}
  10.         </a>
  11.         {% endif %}
  12.     {% endblock %}
  13.     {% block page_account_sidebar_link_budgets %}
  14.         {% if cioBudgetsCurrentAvailable(context) %}
  15.         <a href="{{ path('storefront.account.budgets.grid') }}"
  16.            title="{{ 'account.accountBudgetTitle' | trans }}"
  17.            class="list-group-item list-group-item-action account-aside-item{% if activeRoute is same as('storefront.account.budgets.grid') %} is-active{% endif %}">
  18.             {{ 'account.accountBudgetTitle' | trans }}
  19.         </a>
  20.         {% endif %}
  21.     {% endblock %}
  22. {% endblock %}