{# -*- mode: jinja-html -*- #} {% extends 'base.html' %} {% block styles %} {{super()}} {% endblock %} {% block app_content %} {% include 'entreprises/nav.html' %} {% if logs %}

Dernières opérations Voir tout

{% endif %}
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) %} Importer des contacts {% endif %} {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) and contacts %} Exporter la liste des contacts {% endif %}

Liste des contacts

{% for contact in contacts %} {% endfor %}
Nom Prenom Telephone Mail Poste Service Entreprise
{{ contact[0].nom }} {{ contact[0].prenom }} {{ contact[0].telephone }} {{ contact[0].mail }} {{ contact[0].poste}} {{ contact[0].service}} {{ contact[1].nom }}
Nom Prenom Telephone Mail Poste Service Entreprise
{% endblock %}