{# Герой-блок: аватар, имя, должность·компания, опционально кнопки Call/Email/City/Save Contact #} {# Параметры: user, variant: 'bcard' | 'profile' | 'edit' #} {% set _variant = variant|default('profile') %}
{% if user.myPicture %} {{ user.firstName }} {{ user.lastName }} {% else %}
{% endif %}
{% if _variant == 'edit' %}

{{ 'lang.editProfile'|trans }}

{{ user.firstName }} {{ user.lastName }}

{% else %}

{{ user.firstName }} {{ user.lastName }} {% if user.isVerified %} {% endif %}

{% if user.companyPosition or user.company %}

{% if user.companyPosition %}{{ user.companyPosition }}{% endif %} {% if user.companyPosition and user.company %} · {% endif %} {% if user.company %}{{ user.company }}{% endif %}

{% endif %} {% if _variant == 'profile' and show_actions|default(false) and http_host is defined %} https://{{ http_host }}{{ path('app_bcard', {'id': user.id, '_locale': app.request.locale}) }} {% endif %} {% if _variant == 'bcard' %}
{% if user.cellphone or user.phone %} {{ 'lang.call'|trans }} {% endif %} {% if user.email %} {{ 'lang.email'|trans }} {% endif %} {% if maps_pre_link is defined and maps_pre_link and (user.street or user.zip or user.city) %} {{ 'lang.city'|trans }} {% endif %} {{ 'lang.addToContacts'|trans }}
{% endif %} {% endif %}