2021-12-29 14:41:33 +01:00
|
|
|
{# -*- mode: jinja-html -*- #}
|
2021-12-23 19:28:25 +01:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
2022-02-02 19:13:50 +01:00
|
|
|
{% include 'entreprises/nav.html' %}
|
|
|
|
|
2021-12-23 19:28:25 +01:00
|
|
|
{% if logs %}
|
|
|
|
<div class="container">
|
2022-01-31 18:22:54 +01:00
|
|
|
<h3>Dernières opérations <a href="{{ url_for('entreprises.logs') }}">Voir tout</a></h3>
|
2021-12-23 19:28:25 +01:00
|
|
|
<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 %}
|
2022-01-31 18:22:54 +01:00
|
|
|
|
2022-02-03 16:53:59 +01:00
|
|
|
<div class="container boutons">
|
2022-02-01 18:35:48 +01:00
|
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
|
|
|
|
<a class="btn btn-default" href="{{ url_for('entreprises.add_entreprise') }}">Ajouter une entreprise</a>
|
|
|
|
{% endif %}
|
2022-02-07 18:39:32 +01:00
|
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) %}
|
|
|
|
<a class="btn btn-default" href="{{ url_for('entreprises.import_entreprises') }}">Importer des entreprises</a>
|
|
|
|
{% endif %}
|
2022-02-01 18:35:48 +01:00
|
|
|
{% if entreprises %}
|
|
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) %}
|
|
|
|
<a class="btn btn-default" href="{{ url_for('entreprises.export_entreprises') }}">Exporter la liste des entreprises</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
2021-12-23 19:28:25 +01:00
|
|
|
<div class="container">
|
|
|
|
<h1>Liste des entreprises</h1>
|
2022-01-31 18:22:54 +01:00
|
|
|
{% if entreprises.items %}
|
2021-12-23 19:28:25 +01:00
|
|
|
<div class="table-responsive">
|
2021-12-23 23:21:47 +01:00
|
|
|
<table class="table table-bordered table-hover">
|
2021-12-23 19:28:25 +01:00
|
|
|
<tr>
|
|
|
|
<th>SIRET</th>
|
|
|
|
<th>Nom</th>
|
|
|
|
<th>Adresse</th>
|
|
|
|
<th>Code postal</th>
|
|
|
|
<th>Ville</th>
|
|
|
|
<th>Pays</th>
|
2022-01-27 16:28:28 +01:00
|
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
|
2021-12-23 19:28:25 +01:00
|
|
|
<th>Action</th>
|
2022-01-27 16:28:28 +01:00
|
|
|
{% endif %}
|
2021-12-23 19:28:25 +01:00
|
|
|
</tr>
|
2022-01-31 18:22:54 +01:00
|
|
|
{% for entreprise in entreprises.items %}
|
2021-12-23 19:28:25 +01:00
|
|
|
<tr class="table-row active">
|
|
|
|
<th><a href="{{ url_for('entreprises.fiche_entreprise', id=entreprise.id) }}">{{ entreprise.siret }}</a></th>
|
2021-12-23 23:21:47 +01:00
|
|
|
<th>{{ entreprise.nom }}</th>
|
2021-12-23 19:28:25 +01:00
|
|
|
<th>{{ entreprise.adresse }}</th>
|
|
|
|
<th>{{ entreprise.codepostal }}</th>
|
|
|
|
<th>{{ entreprise.ville }}</th>
|
|
|
|
<th>{{ entreprise.pays }}</th>
|
2022-01-27 16:28:28 +01:00
|
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
|
2021-12-23 19:28:25 +01:00
|
|
|
<th>
|
|
|
|
<div class="btn-group">
|
|
|
|
<a class="btn btn-default dropdown-toggle" data-toggle="dropdown" href="#">Action
|
|
|
|
<span class="caret"></span>
|
|
|
|
</a>
|
2021-12-27 19:00:38 +01:00
|
|
|
<ul class="dropdown-menu pull-right">
|
2021-12-23 19:28:25 +01:00
|
|
|
<li><a href="{{ url_for('entreprises.edit_entreprise', id=entreprise.id) }}">Modifier</a></li>
|
|
|
|
<li><a href="{{ url_for('entreprises.delete_entreprise', id=entreprise.id) }}" style="color:red">Supprimer</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</th>
|
2022-01-27 16:28:28 +01:00
|
|
|
{% endif %}
|
2021-12-23 19:28:25 +01:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
2022-02-03 16:53:59 +01:00
|
|
|
</div>
|
2022-01-31 18:22:54 +01:00
|
|
|
|
2022-02-03 16:53:59 +01:00
|
|
|
<div class="text-center">
|
|
|
|
<a href="{{ url_for('entreprises.index', page=entreprises.prev_num) }}" class="btn btn-default {% if entreprises.page == 1 %}disabled{% endif %}">
|
|
|
|
«
|
|
|
|
</a>
|
|
|
|
{% for page_num in entreprises.iter_pages(left_edge=1, right_edge=1, left_current=1, right_current=2) %}
|
|
|
|
{% if page_num %}
|
|
|
|
{% if entreprises.page == page_num %}
|
|
|
|
<a href="{{ url_for('entreprises.index', page=page_num) }}" class="btn btn-inverse">{{ page_num }}</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ url_for('entreprises.index', page=page_num) }}" class="btn btn-default">{{ page_num }}</a>
|
|
|
|
{% endif %}
|
2021-12-23 19:28:25 +01:00
|
|
|
{% else %}
|
2022-02-03 16:53:59 +01:00
|
|
|
...
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
<a href="{{ url_for('entreprises.index', page=entreprises.next_num) }}" class="btn btn-default {% if entreprises.page == entreprises.pages %}disabled{% endif %}">
|
|
|
|
»
|
|
|
|
</a>
|
2021-12-23 19:28:25 +01:00
|
|
|
</div>
|
2022-02-03 16:53:59 +01:00
|
|
|
|
|
|
|
<p class="text-center">
|
|
|
|
Page {{ entreprises.page }} sur {{ entreprises.pages }}
|
|
|
|
</p>
|
|
|
|
{% else %}
|
|
|
|
<div>Aucune entreprise présent dans la base</div>
|
2021-12-23 19:28:25 +01:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|