2022-03-28 23:44:57 +02:00
|
|
|
{# -*- mode: jinja-html -*- #}
|
|
|
|
<div class="correspondant">
|
|
|
|
<div>
|
2022-04-20 22:37:04 +02:00
|
|
|
Civilité : {{ correspondant.civilite|get_civilité }}<br>
|
2022-03-28 23:44:57 +02:00
|
|
|
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 %}
|
2022-04-20 22:37:04 +02:00
|
|
|
{% if correspondant.origine %}
|
|
|
|
Origine : {{ correspondant.origine }}<br>
|
|
|
|
{% endif %}
|
|
|
|
{% if correspondant.notes %}
|
|
|
|
Notes : {{ correspondant.notes }}<br>
|
|
|
|
{% endif %}
|
2022-03-28 23:44:57 +02:00
|
|
|
</div>
|
|
|
|
|
2023-09-29 21:17:31 +02:00
|
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntrepEdit, None) %}
|
2022-03-28 23:44:57 +02:00
|
|
|
<div class="parent-btn">
|
2022-07-11 20:17:34 +02:00
|
|
|
<a class="btn btn-primary" href="{{ url_for('entreprises.edit_correspondant', entreprise_id=correspondant.site.entreprise.id, site_id=correspondant.site_id, correspondant_id=correspondant.id) }}">Modifier correspondant</a>
|
|
|
|
<a class="btn btn-danger" href="{{ url_for('entreprises.delete_correspondant', entreprise_id=correspondant.site.entreprise.id, site_id=correspondant.site_id, correspondant_id=correspondant.id) }}">Supprimer correspondant</a>
|
2022-03-28 23:44:57 +02:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|