2022-01-26 18:42:48 +01:00
|
|
|
{# -*- mode: jinja-html -*- #}
|
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
<div class="container">
|
|
|
|
<h2>Fiche entreprise - {{ entreprise.nom }} ({{ entreprise.siret }})</h2>
|
|
|
|
|
2022-02-01 18:35:48 +01:00
|
|
|
<div class="entreprise">
|
|
|
|
<div>
|
2022-01-26 18:42:48 +01:00
|
|
|
SIRET : {{ entreprise.siret }}<br>
|
|
|
|
Nom : {{ entreprise.nom }}<br>
|
|
|
|
Adresse : {{ entreprise.adresse }}<br>
|
|
|
|
Code postal : {{ entreprise.codepostal }}<br>
|
|
|
|
Ville : {{ entreprise.ville }}<br>
|
2022-05-06 01:33:50 +02:00
|
|
|
Pays : {{ entreprise.pays }}<br>
|
|
|
|
{% if entreprise.association %}
|
|
|
|
Association
|
|
|
|
{% endif %}
|
2022-02-01 18:35:48 +01:00
|
|
|
</div>
|
2022-01-26 18:42:48 +01:00
|
|
|
</div>
|
|
|
|
|
2022-04-13 20:59:26 +02:00
|
|
|
{% if correspondants %}
|
|
|
|
<div>
|
|
|
|
{% for correspondant in correspondants %}
|
|
|
|
<div>
|
|
|
|
<h3>Correspondant</h3>
|
|
|
|
<div class="correspondant">
|
|
|
|
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 %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2022-01-26 18:42:48 +01:00
|
|
|
<div>
|
2022-02-01 18:35:48 +01:00
|
|
|
<a class="btn btn-success" href="{{ url_for('entreprises.validate_entreprise', id=entreprise.id) }}">Valider</a>
|
2022-02-14 19:42:17 +01:00
|
|
|
<a class="btn btn-danger" href="{{ url_for('entreprises.delete_validation_entreprise', id=entreprise.id) }}">Supprimer</a>
|
2022-01-26 18:42:48 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|