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

{{ title }}


Obtenir la feuille excel à remplir

(*) champs requis

{{ wtf.quick_form(form, novalidate=True) }}
{% if not entreprises_import and not sites_import and not correspondants_import %}
Feuille Entreprises
AttributTypeDescription
sirettextsiret de l'entreprise
nom_entreprisetextnom de l'entreprise
adressetextadresse de l'entreprise
villetextville de l'entreprise
code_postaltextcode postal de l'entreprise
paystextpays de l'entreprise
Feuille Sites
AttributTypeDescription
siret_entreprisetextsiret de l'entreprise
nom_sitetextnom du site
adressetextadresse du site
villetextville du site
code_postaltextcode postal du site
paystextpays du site
Feuille Correspondants
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
nom_sitetextnom du site lié au correspondant
{% endif %} {% if entreprises_import %}
Importation de {{ entreprises_import|length }} entreprise(s)
{% for entreprise in entreprises_import %}
SIRET : {{ entreprise.siret }}
Nom : {{ entreprise.nom }}
Adresse : {{ entreprise.adresse }}
Code postal : {{ entreprise.codepostal }}
Ville : {{ entreprise.ville }}
Pays : {{ entreprise.pays }}
Fiche entreprise
{% for site in entreprise.sites %}
Nom : {{ site.nom }}
Adresse : {{ site.adresse }}
Code postal : {{ site.codepostal }}
Ville : {{ site.ville }}
Pays : {{ site.pays }}
{% endfor %}
{% endfor %} {% endif %} {% if sites_import %}
Importation de {{ sites_import|length }} site(s)
{% for site in sites_import %}
Nom : {{ site.nom }}
Adresse : {{ site.adresse }}
Code postal : {{ site.codepostal }}
Ville : {{ site.ville }}
Pays : {{ site.pays }}
Fiche entreprise
{% endfor %} {% 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 %} Fiche entreprise
{% endfor %} {% endif %} {% endblock %}