forked from ScoDoc/ScoDoc
62 lines
2.5 KiB
HTML
62 lines
2.5 KiB
HTML
{# -*- mode: jinja-html -*- #}
|
|
{% extends 'base.html' %}
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
{% block styles %}
|
|
{{super()}}
|
|
{% endblock %}
|
|
|
|
{% block app_content %}
|
|
<h1>Importation correspondants</h1>
|
|
<br>
|
|
<div>
|
|
<a href="{{ url_for('entreprises.get_import_correspondants_file_sample') }}">Obtenir la feuille excel à remplir</a>
|
|
</div>
|
|
<br>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<p>
|
|
(*) champs requis
|
|
</p>
|
|
{{ wtf.quick_form(form, novalidate=True) }}
|
|
</div>
|
|
</div>
|
|
|
|
{% if not correspondants_import %}
|
|
<table class="table">
|
|
<thead><tr><td><b>Attribut</b></td><td><b>Type</b></td><td><b>Description</b></td></tr></thead>
|
|
<tr><td>nom</td><td>text</td><td>nom du correspondant</td></tr>
|
|
<tr><td>prenom</td><td>text</td><td>prenom du correspondant</td></tr>
|
|
<tr><td>telephone</td><td>text</td><td>telephone du correspondant</td></tr>
|
|
<tr><td>mail</td><td>text</td><td>mail du correspondant</td></tr>
|
|
<tr><td>poste</td><td>text</td><td>poste du correspondant</td></tr>
|
|
<tr><td>service</td><td>text</td><td>service dans lequel travaille le correspondant</td></tr>
|
|
<tr><td>entreprise_siret</td><td>integer</td><td>SIRET de l'entreprise</td></tr>
|
|
</table>
|
|
{% endif %}
|
|
|
|
{% if correspondants_import %}
|
|
<br><div>Importation de {{ correspondants_import|length }} correspondant(s)</div>
|
|
{% for correspondant in correspondants_import %}
|
|
<div class="correspondant">
|
|
<div>
|
|
Nom : {{ correspondant.nom }}<br>
|
|
Prénom : {{ correspondant.prenom }}<br>
|
|
{% if correspondant.telephone %}
|
|
Téléphone : {{ correspondant.telephone }}<br>
|
|
{% endif %}
|
|
{% if correspondant.mail %}
|
|
Mail : {{ correspondant.mail }}<br>
|
|
{% endif %}
|
|
{% if correspondant.poste %}
|
|
Poste : {{ correspondant.poste }}<br>
|
|
{% endif %}
|
|
{% if correspondant.service %}
|
|
Service : {{ correspondant.service }}<br>
|
|
{% endif %}
|
|
<a href="{{ url_for('entreprises.fiche_entreprise', id=correspondant.entreprise_id )}}">lien vers l'entreprise</a>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endblock %} |