forked from ScoDoc/ScoDoc
42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
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>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><a href="{{ url_for('entreprises.fiche_entreprise', id=contact[1].id) }}">{{ contact[1].nom }}</a></th>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
<br>
|
||
|
{% else %}
|
||
|
<div>Aucun contact présent dans la base</div>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{% endblock %}
|