{# -*- mode: jinja-html -*- #}
{% extends 'base.html' %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block styles %}
{{super()}}
{% endblock %}
{% block app_content %}
{{ title }}
(*) champs requis
{{ wtf.quick_form(form, novalidate=True) }}
{% if not entreprises_import and not sites_import and not correspondants_import %}
Feuille Entreprises
Attribut | Type | Description |
siret | text | siret de l'entreprise |
nom_entreprise | text | nom de l'entreprise |
adresse | text | adresse de l'entreprise |
ville | text | ville de l'entreprise |
code_postal | text | code postal de l'entreprise |
pays | text | pays de l'entreprise |
Feuille Sites
Attribut | Type | Description |
siret_entreprise | text | siret de l'entreprise |
nom_site | text | nom du site |
adresse | text | adresse du site |
ville | text | ville du site |
code_postal | text | code postal du site |
pays | text | pays du site |
Feuille Correspondants
Attribut | Type | Description |
civilite | text | civilite du correspondant (H ou F) |
nom | text | nom du correspondant |
prenom | text | prenom du correspondant |
telephone | text | telephone du correspondant |
mail | text | mail du correspondant |
poste | text | poste du correspondant |
service | text | service dans lequel travaille le correspondant |
origine | text | origine du correspondant |
notes | text | notes sur le correspondant |
nom_site | text | nom 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 }}
{% 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 }}
{% 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 %}
{% endfor %}
{% endif %}
{% endblock %}