{# -*- 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 correspondants %}
{% for correspondant in correspondants %}

Correspondant

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 %}
{% endfor %}
{% endif %}
Valider Supprimer
{% endblock %}