{% extends "Profile/show/layout.html.twig" %} {% block schemaBlock %} {% if user.publicProfile %} {% endif %} {% endblock %} {% block page %}

{{ 'profile.profile3'|trans({}, 'FOSUserBundle') }} {{ user.firstName ~ ' ' ~ user.lastName }}


Profile Picture

{{ user.firstname ~ " " ~ user.lastname }}

{% if user.bio == null %} {{ 'profile.born'|trans({}, 'FOSUserBundle') }} {{ user.birthdate|date('Y M D') }} {# country #} {% if user.country is not null and user.country != "" %} , {{ 'profile.from'|trans({}, 'FOSUserBundle') }} {{ user.country }} {% endif %} {# address #} {% if user.address is not null %} {{ 'profile.address'|trans({}, 'FOSUserBundle') }} {{ user.address }} {% endif %} {# study #} , {{ 'profile.study_field'|trans({}, 'FOSUserBundle') }} {% if app.request.get('_locale') == 'ar' %}{{ user.studyField.arabicFullName }}{% else %}{{ user.studyField.englishFullName }}{% endif %} {% if user.studyDegree is not null %} , {{ 'profile.study_degree'|trans({}, 'FOSUserBundle') }} {{ user.studyDegree|trans({}, 'FOSUserBundle') }} {% endif %} {% if user.work is not null %} , {{ 'profile.work'|trans({}, 'FOSUserBundle') }} {{ user.work }} {% endif %} {% if user.languages|length > 0 %} {{ 'profile.languages'|trans({}, 'FOSUserBundle') }} {% for language in user.languages %} {{ language }}, {% endfor %} {% endif %} {% else %} {{ user.bio }} {% endif %}

{{ 'profile.social_account'|trans({}, 'FOSUserBundle') }}

{% if user.facebookUrl is not null %} {% endif %} {% if user.linkedinUrl is not null %} {% endif %}

{{ 'profile.interests'|trans({}, 'FOSUserBundle') }}

{% if user.interests|length > 0 %} {% for interest in user.interests %} {{ interest}} {% endfor %} {% else %}

{{ 'profile.notFound'|trans({}, 'FOSUserBundle') }}

{% endif %}

{{ 'profile.my_published_research'|trans({}, 'FOSUserBundle') }} {{ user.firstname ~ " " ~ user.lastname }}

{% if matchedResearches is defined and matchedResearches is not empty %}
{{ include('@syndexAcademic/Default/research_brief.html.twig') }}
{{'research.all'|trans({},'Academia') }}
{% else %}

{{ 'profile.research_notFound'|trans({}, 'FOSUserBundle') }}

{% endif %}
{% endblock %}