{# -*- mode: jinja-html -*- #}
{% extends 'base.html' %}

{% block app_content %}
<div class="container">
    <h2>Fiche entreprise - {{ entreprise.nom }} ({{ entreprise.siret }})</h2>

    <div class="entreprise">
        <div>
            SIRET : {{ entreprise.siret }}<br>
            Nom : {{ entreprise.nom }}<br>
            Adresse : {{ entreprise.adresse }}<br>
            Code postal : {{ entreprise.codepostal }}<br>
            Ville : {{ entreprise.ville }}<br>
            Pays : {{ entreprise.pays }}
        </div>
    </div>

    {% 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 %}

    <div>
        <a class="btn btn-success" href="{{ url_for('entreprises.validate_entreprise', id=entreprise.id) }}">Valider</a>
        <a class="btn btn-danger" href="{{ url_for('entreprises.delete_validation_entreprise', id=entreprise.id) }}">Supprimer</a>
    </div>
</div>
{% endblock %}