{# -*- 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
siret (*)textsiret de l'entreprise
nom_entreprise (*)textnom de l'entreprise
adresse (*)textadresse de l'entreprise
ville (*)textville de l'entreprise
code_postal (*)textcode postal de l'entreprise
paystextpays de l'entreprise
Feuille Sites
AttributTypeDescription
siret_entreprise (*)textsiret de l'entreprise
id_site (*)textid du site (ne rien remplir pour créer un site)
nom_site (*)textnom du site
adresse (*)textadresse du site
ville (*)textville du site
code_postal (*)textcode postal du site
pays (*)textpays du site
Feuille Correspondants (à utiliser pour les modifications)
AttributTypeDescription
civilite (*)textcivilite du correspondant (H ou F)
nom (*)textnom du correspondant
prenom (*)textprenom du correspondant
telephone (*)texttelephone du correspondant
mail (*)textmail 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 %}