<div class="header-block block-account">
{% if customer %}
<a class="bt-account" href="{{ path('customer_account') }}">
<img src="{{ asset('img/account.svg') }}" alt="{% trans %}Bonjour{% endtrans %} {{ customer.firstname }}" width="30" height="30">
<span>
{% trans %}Bonjour{% endtrans %}<br>
<strong>{{ customer.firstname }}</strong>
</span>
</a>
<div class="session-context">
{% if customerMgr.isExpert() %}
{% trans %}Expert Vivog{% endtrans %}{% if customer.priceGroups|length >1 %} - <a href="{{ path('customer_context', {ctx:'VV'}) }}" class="change-context">{% trans %}Changer de profil{% endtrans %}</a>{% endif %}
{% elseif customerMgr.hasExpertContext() %}
{% trans %}Client Vivog{% endtrans %}{% if customer.priceGroups|length >1 %} - <a href="{{ path('customer_context', {ctx:'EX'}) }}" class="change-context">{% trans %}Changer de profil{% endtrans %}</a>{% endif %}
{% endif %}
</div>
{% include 'front/customer/blocks/menu.html.twig' %}
{% else %}
<a class="bt-account" href="{{ path('customer_login') }}">
<img src="{{ asset('img/account.svg') }}" alt="{% trans %}Mon compte{% endtrans %}" width="30" height="30">
<span>
{% trans %}Identifiez-vous <br>pour voir les prix{% endtrans %}
</span>
</a>
{% endif %}
</div>