{# -*- mode: jinja-html -*- #}
<div class="correspondant">
    <div>
        Civilité : {{ correspondant.civilite|get_civilité }}<br>
        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 %}
        {% if correspondant.origine %}
        Origine : {{ correspondant.origine }}<br>
        {% endif %}
        {% if correspondant.notes %}
        Notes : {{ correspondant.notes }}<br>
        {% endif %}
    </div>

    {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
    <div class="parent-btn">
        <a class="btn btn-primary" href="{{ url_for('entreprises.edit_correspondant', id=correspondant.id) }}">Modifier correspondant</a>
        <a class="btn btn-danger" href="{{ url_for('entreprises.delete_correspondant', id=correspondant.id) }}">Supprimer correspondant</a>
    </div>
    {% endif %}
</div>