{# -*- 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 %}
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 %}
{% endblock %}