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

Fiche entreprise - {{ entreprise.nom }} ({{ entreprise.siret }})

SIRET : {{ entreprise.siret }}
Nom : {{ entreprise.nom }}
Adresse : {{ entreprise.adresse }}
Code postal : {{ entreprise.codepostal }}
Ville : {{ entreprise.ville }}
Pays : {{ entreprise.pays }}
{% if entreprise.association %} Association {% endif %}
{% if sites %}

Sites

{% for site in sites %}
Nom : {{ site.nom }}
Adresse : {{ site.adresse }}
Code postal : {{ site.codepostal }}
Ville : {{ site.ville }}
Pays : {{ site.pays }} {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesCorrespondants, None) %} {% for correspondant in site.correspondants %}
Civilité : {{ correspondant.civilite|get_civilité }}
Nom : {{ correspondant.nom }}
Prénom : {{ correspondant.prenom }}
{% if correspondant.telephone %} Téléphone : {{ correspondant.telephone }}
{% endif %} {% if correspondant.mail %} Mail : {{ correspondant.mail }}
{% endif %} {% if correspondant.poste %} Poste : {{ correspondant.poste }}
{% endif %} {% if correspondant.service %} Service : {{ correspondant.service }}
{% endif %} {% if correspondant.origine %} Origine : {{ correspondant.origine }}
{% endif %} {% if correspondant.notes %} Notes : {{ correspondant.notes }}
{% endif %}
{% endfor %} {% endif %}
{% endfor %}
{% endif %}
Valider Supprimer
{% endblock %}