{# -*- mode: jinja-html -*- #} {% extends 'base.html' %} {% import 'bootstrap/wtf.html' as wtf %} {% block styles %} {{super()}} {% endblock %} {% block app_content %}

Importation correspondants


Obtenir la feuille excel à remplir

(*) champs requis

{{ wtf.quick_form(form, novalidate=True) }}
{% if not correspondants_import %}
AttributTypeDescription
civilitetextcivilite du correspondant (H ou F)
nomtextnom du correspondant
prenomtextprenom du correspondant
telephonetexttelephone du correspondant
mailtextmail du correspondant
postetextposte du correspondant
servicetextservice dans lequel travaille le correspondant
originetextorigine du correspondant
notestextnotes sur le correspondant
entreprise_sirettextSIRET de l'entreprise
{% endif %} {% if correspondants_import %}
Importation de {{ correspondants_import|length }} correspondant(s)
{% for correspondant in correspondants_import %}
Civilité : {{ correspondant.civilite|get_civilité }}
Nom : {{ correspondant.nom }}
Prénom : {{ correspondant.prenom }}
{% if correspondant.telephone %} Téléphone : {{ correspondant.telephone }}
{% endif %} {% if correspondant.mail %} Mail : {{ correspondant.mail }}
{% endif %} {% if correspondant.poste %} Poste : {{ correspondant.poste }}
{% endif %} {% if correspondant.service %} Service : {{ correspondant.service }}
{% endif %} {% if correspondant.origine %} Origine : {{ correspondant.origine }}
{% endif %} {% if correspondant.notes %} Notes : {{ correspondant.notes }}
{% endif %} lien vers l'entreprise
{% endfor %} {% endif %} {% endblock %}