{% extends 'layout/base.html.twig' %}
{% set i18n_prefix = _self|i18n_prefix %}
{% block body %}
{% if user.avatar is null %}
{% else %}
{% endif %}
{% include 'components/layout/_title_3.html.twig' with {
name: user.getDisplayName,
rowClass: 'mt-3'
} %}
{% if user.category is not null %}
{% if user.category.parent is not null %}
{% set category = user.category.parent ~ ' / ' ~ user.category %}
{% else %}
{% set category = user.category %}
{% endif %}
{% include 'components/layout/_text.html.twig' with {
text: category,
textAlign: 'text-center'
} %}
{% endif %}
{% if user.address is not null %}
{{ user.address.subAndlocality }}
{% endif %}
{% if user.description is not null %}
{% include 'components/layout/_text.html.twig' with {
margin: 'mt-3',
text: user.description,
} %}
{% endif %}
{% if objects_pagination is empty and services_pagination is empty %}
{{ (i18n_prefix ~ '.no_result')|trans }}
{% else %}
{% include 'components/product/_section.html.twig' %}
{% include 'components/product/_tab_content.html.twig' with {objects_pagination, services_pagination} %}
{% endif %}