{% sw_extends '@Storefront/storefront/page/account/sidebar.html.twig' %}
{# Adding new account link print label #}
{% block page_account_sidebar_link_orders %}
{{ parent() }}
{# Print label #}
{% block page_account_sidebar_link_twigel_print_label %}
{% if context.customer.id in config('TwigelSportLabel').config.allowedUsers %}
<a href="{{ path('twigel.print-label') }}?type={% if context.customer.id in config('TwigelSportLabel').config.privateUsers %}private{% elseif context.customer.id in config('TwigelSportLabel').config.commercialUsers %}commercial{% endif %}"
class="list-group-item list-group-item-action account-aside-item{% if activeRoute is same as('twigel.print-label') %} is-active{% endif %}">
{{ "twigel-print-label.sidebarMenuTitle"|trans }}
</a>
{% endif %}
{% endblock %}
{% endblock %}