forked from ScoDoc/ScoDoc
45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
|
{# -*- mode: jinja-html -*- #}
|
||
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block app_content %}
|
||
|
<div class="container">
|
||
|
<h2>Fiche entreprise - {{ entreprise.nom }} ({{ entreprise.siret }})</h2>
|
||
|
|
||
|
<div>
|
||
|
<p>
|
||
|
SIRET : {{ entreprise.siret }}<br>
|
||
|
Nom : {{ entreprise.nom }}<br>
|
||
|
Adresse : {{ entreprise.adresse }}<br>
|
||
|
Code postal : {{ entreprise.codepostal }}<br>
|
||
|
Ville : {{ entreprise.ville }}<br>
|
||
|
Pays : {{ entreprise.pays }}
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
{% if contacts %}
|
||
|
<div>
|
||
|
{% for contact in contacts %}
|
||
|
Contact {{loop.index}}
|
||
|
<div>
|
||
|
<p>
|
||
|
Nom : {{ contact.nom }}<br>
|
||
|
Prénom : {{ contact.prenom }}<br>
|
||
|
Téléphone : {{ contact.telephone }}<br>
|
||
|
Mail : {{ contact.mail }}<br>
|
||
|
{% if contact.poste %}
|
||
|
Poste : {{ contact.poste }}<br>
|
||
|
{% endif %}
|
||
|
{% if contact.service %}
|
||
|
Service : {{ contact.service }}<br>
|
||
|
{% endif %}
|
||
|
</p>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
<div>
|
||
|
<a class="btn btn-primary" href="{{ url_for('entreprises.validate_entreprise', id=entreprise.id) }}">Valider</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|