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

Importation contacts


Obtenir la feuille excel à remplir

(*) champs requis

{{ wtf.quick_form(form, novalidate=True) }}
{% if not contacts_import %}
AttributTypeDescription
nomtextnom du contact
prenomtextprenom du contact
telephonetexttelephone du contact
mailtextmail du contact
postetextposte du contact
servicetextservice dans lequel travaille le contact
entreprise_siretintegerSIRET de l'entreprise
{% endif %} {% if contacts_import %}
Importation de {{ contacts_import|length }} contact(s)
{% for contact in contacts_import %}
Nom : {{ contact.nom }}
Prénom : {{ contact.prenom }}
{% if contact.telephone %} Téléphone : {{ contact.telephone }}
{% endif %} {% if contact.mail %} Mail : {{ contact.mail }}
{% endif %} {% if contact.poste %} Poste : {{ contact.poste }}
{% endif %} {% if contact.service %} Service : {{ contact.service }}
{% endif %} lien vers l'entreprise
{% endfor %} {% endif %} {% endblock %}