{% extends 'base.html' %} {% block title %}{{ member.full_name }} - {{ settings.site_name }}{% endblock %} {% block content %} {% include 'components/breadcrumb.html' with page_title=member.full_name page_subtitle=member.get_person_type_display %}
{% if member.photo %} {{ member.full_name }} {% else %}
{{ member.first_name.0 }}{{ member.last_name.0 }}
{% endif %}

{% if member.professor %}{{ member.professor.get_title_display }} {% endif %}{{ member.full_name }}

{{ member.get_person_type_display }}

{% if member.university %}

{{ member.university.name }}

{% endif %}
{# Contact details #}
{% if member.email %} {{ member.email }} {% endif %} {% if member.phone %} {{ member.phone }} {% endif %}
{# Social and academic links #} {% if member.get_all_links %} {% endif %}
{% if member.bio %}

Biographie

{{ member.bio }}

{% endif %} {% if member.research_interests %}

Interets de recherche

{{ member.research_interests }}

{% endif %} {% if member.phd_student %}

These de doctorat

{{ member.phd_student.thesis_title }}

{% if member.phd_student.thesis_description %}

{{ member.phd_student.thesis_description }}

{% endif %}
{% if member.phd_student.supervisor %} {% endif %}
Debut: {{ member.phd_student.start_date|date:"M Y" }}
{% endif %} {% if member.master_student %}

Parcours Master

Promotion: {{ member.master_student.cohort_year }}
{% if member.master_student.specialization %}
Specialisation: {{ member.master_student.specialization.name }}
{% endif %}
{% if member.master_student.thesis_title %}

Memoire: {{ member.master_student.thesis_title }}

{% endif %}
{% endif %} {% if publications %}

Publications

{% for pub in publications %}
{{ pub.get_publication_type_display }}

{{ pub.title }}

{{ pub.venue }} - {{ pub.publication_date|date:"Y" }}

{% endfor %}
{% endif %} {% if projects %}

Projets de recherche

{% for project in projects %}

{{ project.title }}

{{ project.get_status_display }}

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