{% extends "fiches/base.html" %} {% load i18n %} {% block content %}
{% if profile.picture %} {% endif %}

{{ profile.full_name }} ({{ profile.promotion }}) {% if profile.nickname %} (alias : {{ profile.nickname }}) {% endif %}

{% if profile.pronoun %}
{% 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 }}
    {% for p in profile.phone_set.all %}
  • {{ p.name }}{{ p.number }}
  • {% endfor %}
{% endif %} {% if profile.social_set.exists %} {% endif %} {% if profile.mail_set.exists %}
{{ profile.mail_set.count|pluralize:_("Mail,Mails") }}
    {% for p in profile.mail_set.all %}
  • {{ p.name }}{{ p.mail }}
  • {% endfor %}
{% endif %} {% if profile.address_set.exists %}
{{ profile.address_set.count|pluralize:_("Adresse,Adresses") }}
    {% for p in profile.address_set.all %}
  • {{ p.name }}{{ p.content }}
  • {% endfor %}
{% endif %}
{% if profile.text_field %}
{% trans "Champ libre" %}

{{ profile.text_field }}

{% endif %}
{% endblock %}