{% if profile.picture %}
{% endif %}
{{ profile.full_name }} ({{ profile.promotion }}) {% if profile.nickname %} (alias : {{ profile.nickname }}) {% endif %}
{% if profile.pronoun %}
{% if profile.text_field %}
{% trans "Pronom(s) utilisé(s)" %}
{{ profile.pronoun }}
{% endif %}
{% if profile.department.exists %}
{% trans "Département" %}{{ profile.department.count|pluralize }}
{% for dep in profile.department.all %}{{ dep }}{% if not forloop.last %}, {% endif %}{% endfor %}
{% endif %}
{% if profile.birth_date %}
{% trans "Date de naissance" %}
{{ profile.birth_date }}
{% endif %}
{% if profile.thurne %}
{% trans "Thurne" %}
{{ profile.thurne }}
{% endif %}
{% if profile.phone_set.exists %}
{% trans "Téléphone" %}{{ profile.phone_set.count|pluralize }}
{% endif %}
{% if profile.social_set.exists %}
{% endif %}
{% if profile.mail_set.exists %}
-
{% for p in profile.phone_set.all %}
- {{ p.name }}{{ p.number }} {% endfor %}
{{ profile.mail_set.count|pluralize:_("Mail,Mails") }}
{% endif %}
{% if profile.address_set.exists %}
-
{% for p in profile.mail_set.all %}
- {{ p.name }}{{ p.mail }} {% endfor %}
{{ profile.address_set.count|pluralize:_("Adresse,Adresses") }}
{% endif %}
-
{% for p in profile.address_set.all %}
- {{ p.name }}{{ p.content }} {% endfor %}
{% trans "Champ libre" %}
{% endif %}
{{ profile.text_field }}