{# -*- mode: jinja-html -*- #} {% extends 'base.html' %} {% block app_content %} {% if logs %} <div class="container"> <h3>Dernières opérations</h3> <ul> {% for log in logs %} <li><span style="margin-right: 10px;">{{ log.date.strftime('%d %b %Hh%M') }}</span><span>{{ log.text|safe }} par {{ log.authenticated_user|get_nomcomplet }}</span></li> {% endfor %} </ul> </div> {% endif %} <div class="container"> <h1>Liste des contacts</h1> {% if contacts %} <div class="table-responsive"> <table class="table table-bordered table-hover"> <tr> <th>Nom</th> <th>Prenom</th> <th>Telephone</th> <th>Mail</th> <th>Poste</th> <th>Service</th> <th>Entreprise</th> </tr> {% for contact in contacts %} <tr class="table-row active"> <th>{{ contact[0].nom }}</th> <th>{{ contact[0].prenom }}</th> <th>{{ contact[0].telephone }}</th> <th>{{ contact[0].mail }}</th> <th>{{ contact[0].poste}}</th> <th>{{ contact[0].service}}</th> <th><a href="{{ url_for('entreprises.fiche_entreprise', id=contact[1].id) }}">{{ contact[1].nom }}</a></th> </tr> {% endfor %} </table> {% else %} <div>Aucun contact présent dans la base</div> </div> {% endif %} <div> {% if contacts %} <a class="btn btn-default" href="{{ url_for('entreprises.export_contacts') }}">Exporter la liste des contacts</a> <a class="btn btn-default" href="{{ url_for('entreprises.export_contacts_bis') }}">Exporter la liste des contacts avec leur entreprise</a> {% endif %} </div> </div> {% endblock %}