{% sw_extends 'storefront/page/account/sidebar.html.twig' %}
{% block page_account_sidebar_menu_inner %}
{{ parent() }}
{% block page_account_sidebar_link_budgetcustomers %}
{% if cioBudgetsCurrentAvailable(context) %}
<a href="{{ path('storefront.account.budgetcustomers.grid') }}"
title="{{ 'account.accountBudgetTitle' | trans }}"
class="list-group-item list-group-item-action account-aside-item{% if activeRoute is same as('storefront.account.budgetcustomers.grid') %} is-active{% endif %}">
{{ 'account.accountWelcomeTitle' | trans }}
</a>
{% endif %}
{% endblock %}
{% block page_account_sidebar_link_budgets %}
{% if cioBudgetsCurrentAvailable(context) %}
<a href="{{ path('storefront.account.budgets.grid') }}"
title="{{ 'account.accountBudgetTitle' | trans }}"
class="list-group-item list-group-item-action account-aside-item{% if activeRoute is same as('storefront.account.budgets.grid') %} is-active{% endif %}">
{{ 'account.accountBudgetTitle' | trans }}
</a>
{% endif %}
{% endblock %}
{% endblock %}