{% extends "fiches/base.html" %} {% load i18n %} {% load staticfiles %} {% block content %}

{% trans "Modifier ma page d'annuaire" %}

{{ form.non_field_errors }}
{% csrf_token %}
{{ form.full_name }}
{{ form.nickname }}
{{ form.pronoun }}
{% if form.instance.picture %} {% else %} {% endif %}
{% if form.instance.picture %}
{% endif %}
{{ form.department }}
{{ form.promotion }}
{{ form.birth_date }}
{{ form.thurne }}
{% trans "Ajouter un numéro" as add_number %} {% include "fiches/multientry.html" with formset=phone_form new_entry_text=add_number %}
{% trans "Ajouter un réseau social" as add_social %} {% include "fiches/multientry.html" with formset=social_form new_entry_text=add_social %}
{% trans "Ajouter un email" as add_mail %} {% include "fiches/multientry.html" with formset=mail_form new_entry_text=add_mail %}
{% trans "Ajouter une adresse" as add_address %} {% include "fiches/multientry.html" with formset=address_form new_entry_text=add_address %}
{{ form.text_field }}
{{ form.printing }}
{{ form.keep_me }}
{% endblock %} {% block extra_js %} {% endblock %}