{% extends "base.twig" %} {% block content %}
{% if author.avatar_url %}
{{ author.display_name }}

{{ author.display_name }}

{% if author.role_label or author.role_complement or author.affiliation %}

{{ author.role_label }}{% if author.role_complement %} {{ author.role_complement }}{% if author.affiliation %},{% endif %}{% endif %}{% if author.affiliation %} {{ author.affiliation }}{% endif %}

{% endif %}

{{ current_language == 'en' ? 'Updated on' : 'Mis à jour le' }} {{ author.user_since }}

{% endif %}
{% if author.email or author.liens_externes or author.documents or author.hal_publications_url %} {% endif %}
{% if not author.avatar_url %}

{{ author.display_name }}

{% if author.role_label or author.role_complement or author.affiliation %}

{{ author.role_label }}{% if author.role_complement %} {{ author.role_complement }}{% if author.affiliation %},{% endif %}{% endif %}{% if author.affiliation %} {{ author.affiliation }}{% endif %}

{% endif %}

{{ current_language == 'en' ? 'Updated on' : 'Mis à jour le' }} {{ author.user_since }}

{% endif %} {% if current_language == 'en' and author.bio_en %}
{{ author.bio_en|raw }}
{% elseif author.bio %}
{{ author.bio|raw }}
{% endif %} {% if author.domaines_tags %}

{{ current_language == 'en' ? 'Research areas' : 'Domaines de recherches' }} : {% for tag in author.domaines_tags %} {{ tag.name }}{% if not loop.last %}, {% endif %} {% endfor %}

{% endif %} {% if current_language == 'en' and author.domaines_en %}
{% if not author.domaines_tags %}Research areas :{% endif %} {{ author.domaines_en|raw }}
{% elseif author.domaines %}
{% if not author.domaines_tags %}{{ current_language == 'en' ? 'Research areas' : 'Domaines de recherches' }} :{% endif %} {{ author.domaines|raw }}
{% endif %} {% if current_language == 'en' and author.recherches_en %}
Current research : {{ author.recherches_en|raw }}
{% elseif author.recherches %}
{{ current_language == 'en' ? 'Current research' : 'Recherches en cours' }} : {{ author.recherches|raw }}
{% endif %} {% if author.axes %}

{{ current_language == 'en' ? 'Thematic axes' : 'Axes thématiques' }} : {% for axe in author.axes %} {{ axe.name }}{% if not loop.last %}, {% endif %} {% endfor %}

{% endif %} {% if author.titre_these or author.resume_these or author.resume_these_en %}

{{ current_language == 'en' ? 'Thesis' : 'Thèse' }}

{% if author.titre_these %}

{{ author.titre_these }}

{% endif %} {% if author.date_soutenance %}

{{ current_language == 'en' ? 'Defended in' : 'Soutenue en' }} {{ author.date_soutenance }}

{% endif %} {% if author.directeur_thalim or author.autre_directeur %}

{{ current_language == 'en' ? 'Supervisor' : 'Direction' }} : {% if author.directeur_thalim %} {{ author.directeur_thalim.name }}{% if author.autre_directeur %}, {% endif %} {% endif %} {% if author.autre_directeur %}{{ author.autre_directeur }}{% endif %}

{% endif %} {% if current_language == 'en' and author.resume_these_en %}
{{ author.resume_these_en|raw }}
{% elseif author.resume_these %}
{{ author.resume_these|raw }}
{% endif %}
{% endif %} {% if author_posts %}
{% for group in author_posts %}

{{ group.cat_name }}

{% endfor %}
{% endif %}
{% endblock %}