initial upload

This commit is contained in:
2023-06-22 10:34:18 +02:00
parent 6df897b44d
commit 5c621cf669
1030 changed files with 355394 additions and 49 deletions

View File

@@ -0,0 +1,43 @@
<metal:block use-macro="main_template">
<div metal:fill-slot="content">
<div class="alert alert-danger" tal:condition="message" tal:content="message" />
<table id="ants_demandes" class="table table-condensed table-striped table-bordered">
<thead>
<tr>
<th>Identifiant</th>
<th>Numéro</th>
<th>Nom Prénom</th>
<th>Type</th>
<th>Statut</th>
<th>Crée le</th>
<th>Maj le</th>
</tr>
</thead>
</table>
<br />
<br />
<script type="text/javascript">
var dataSet = ${dt_data};
$(document).ready(function() {
$.fn.dataTable.moment('DD/MM/YYYY - HH:mm');
$('#ants_demandes').DataTable({
data: dataSet,
pageLength: 100,
bLengthChange: false,
language: {
url: 'https://cdn.datatables.net/plug-ins/1.10.16/i18n/French.json'
},
});
});
</script>
</div><!-- content -->
</metal:block>