{% extends "base.html" %} {% block title %}Affichage d’un profil{% endblock %} {% block bodyId %}showProfilePage{% endblock %} {% block content %}

Affichage d’un profil

Nom :
{{ user_to_show.nom }}
Prénom :
{{ user_to_show.prenom }}
Date de naissance :
{{ user_to_show.date_de_naissance }}
Matricule :
{{ user_to_show.matricule }}
Courriel :
{{ user_to_show.courriel }}
Tél. fixe :
{{ user_to_show.tel_fixe }}
Tél. mobile :
{{ user_to_show.tel_mobile }}
Faculté :
{{ user_to_show.faculte.nom }}
{% if user_to_show.type_de_personne == "student" %}
Cursus :
{{ user_to_show.cursus.initule }}
Année :
{{ user_to_show.annee }}
{% elif user_to_show.type_de_personne == "employee" %}
Bureau :
{{ user_to_show.bureau }}
Campus :
{{ user_to_show.campus.nom }}
Fonction :
{{ user_to_show.fonction.intitule }}
{% endif %}

Retour

{% endblock %}