{% if is_granted('ROLE_USER') %}
<li class="">
{% if true == app.user.customer.isPro %}
<a class="compte-link link-other pro-icon" href="{{ path('sylius_shop_account_dashboard') }}" title="{{ app.user.customer.fullName }}" data-toggle="tooltip"></a>
{% else %}
<a class="compte-link link-other" href="{{ path('sylius_shop_account_dashboard') }}" title="{{ app.user.customer.fullName }}" data-toggle="tooltip"></a>
{% endif %}
</li>
{% else %}
<li>
<a class="compte-link link-other" href="{{ path('sylius_shop_login') }}" title="{{ 'sylius.ui.my_account'|trans }}" data-toggle="tooltip"></a>
</li>
{% endif %}