{# -*- mode: jinja-html -*- #} {% extends 'base.html' %} {% 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) %}
{% if contacts %} Exporter la liste des contacts Exporter la liste des contacts avec leur entreprise {% endif %}
{% endif %}

Liste des contacts

{% if contacts.items %}
{% for contact in contacts.items %} {% 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 }}
« {% for page_num in contacts.iter_pages(left_edge=1, right_edge=1, left_current=1, right_current=2) %} {% if page_num %} {% if contacts.page == page_num %} {{ page_num }} {% else %} {{ page_num }} {% endif %} {% else %} ... {% endif %} {% endfor %} »

Page {{ contacts.page }} sur {{ contacts.pages }}

{% else %}
Aucun contact présent dans la base
{% endif %}
{% endblock %}