forked from ScoDoc/ScoDoc
121 lines
5.4 KiB
HTML
121 lines
5.4 KiB
HTML
{# -*- mode: jinja-html -*- #}
|
|
{% extends 'base.html' %}
|
|
|
|
{% block styles %}
|
|
{{super()}}
|
|
<script src="/ScoDoc/static/jQuery/jquery-1.12.4.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/ScoDoc/static/DataTables/datatables.min.css">
|
|
<script type="text/javascript" charset="utf8" src="/ScoDoc/static/DataTables/datatables.min.js"></script>
|
|
{% endblock %}
|
|
|
|
{% block app_content %}
|
|
{% include 'entreprises/nav.html' %}
|
|
|
|
{% if logs %}
|
|
<div class="container">
|
|
<h3>Dernières opérations <a href="{{ url_for('entreprises.logs') }}">Voir tout</a></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_by_username }}</span></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="container boutons">
|
|
{% 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 %}
|
|
{% 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 %}
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) and entreprises %}
|
|
<a class="btn btn-default" href="{{ url_for('entreprises.export_entreprises') }}">Exporter la liste des entreprises</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="container" style="margin-bottom: 10px;">
|
|
<h1>Liste des entreprises</h1>
|
|
<table id="table-entreprises">
|
|
<thead>
|
|
<tr>
|
|
<td data-priority="2">SIRET</td>
|
|
<td data-priority="1">Nom</td>
|
|
<td data-priority="4">Adresse</td>
|
|
<td data-priority="6">Code postal</td>
|
|
<td data-priority="5">Ville</td>
|
|
<td data-priority="7">Pays</td>
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
|
|
<td data-priority="3">Action</td>
|
|
{% endif %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for entreprise in entreprises %}
|
|
<tr>
|
|
<td><a href="{{ url_for('entreprises.fiche_entreprise', id=entreprise.id) }}">{{ entreprise.siret }}</a></td>
|
|
<td>{{ entreprise.nom }}</td>
|
|
<td>{{ entreprise.adresse }}</td>
|
|
<td>{{ entreprise.codepostal }}</td>
|
|
<td>{{ entreprise.ville }}</td>
|
|
<td>{{ entreprise.pays }}</td>
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
|
|
<td>
|
|
<div class="btn-group">
|
|
<a class="btn btn-default dropdown-toggle" data-toggle="dropdown" href="#">Action
|
|
<span class="caret"></span>
|
|
</a>
|
|
<ul class="dropdown-menu pull-left">
|
|
<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>
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td>SIRET</td>
|
|
<td>Nom</td>
|
|
<td>Adresse</td>
|
|
<td>Code postal</td>
|
|
<td>Ville</td>
|
|
<td>Pays</td>
|
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
|
|
<td>Action</td>
|
|
{% endif %}
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
let table = new DataTable('#table-entreprises',
|
|
{
|
|
"autoWidth": false,
|
|
"responsive": {
|
|
"details": true
|
|
},
|
|
"pageLength": 10,
|
|
"language": {
|
|
"emptyTable": "Aucune donnée disponible dans le tableau",
|
|
"info": "Affichage de _START_ à _END_ sur _TOTAL_ entrées",
|
|
"infoEmpty": "Affichage de 0 à 0 sur 0 entrées",
|
|
"infoFiltered": "(filtrées depuis un total de _MAX_ entrées)",
|
|
"lengthMenu": "Afficher _MENU_ entrées",
|
|
"loadingRecords": "Chargement...",
|
|
"processing": "Traitement...",
|
|
"search": "Rechercher:",
|
|
"zeroRecords": "Aucune entrée correspondante trouvée",
|
|
"paginate": {
|
|
"next": "Suivante",
|
|
"previous": "Précédente"
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %} |