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

Dernières opérations

{% endif %}

Liste des contacts

{% if 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 }}
{% else %}
Aucun contact présent dans la base
{% endif %} {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) %}
{% if contacts %} Exporter la liste des contacts Exporter la liste des contacts avec leur entreprise {% endif %}
{% endif %}
{% endblock %}