{% extends "Profile/show/layout.html.twig" %} {% block schemaBlock %} {% if user.publicProfile %} {% endif %} {% endblock %} {% block page %}
{{ 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 %}