Files
caotek_monaa/caotek_mesavoirs/templates/actifs/histo_list.pt
2020-08-18 17:17:56 +02:00

59 lines
1.6 KiB
XML

<div metal:use-macro="load: ../global_layout.pt">
<div metal:fill-slot="content">
<p>
<a href="histo_edit/0" class="btn btn-success" role="button">
<span class="glyphicon glyphicon-plus"></span> Entrée / Sortie cash</a>
</p>
<table id="histo_list" class="table table-striped table-bordered">
<thead>
<tr>
<th>Date</th>
<th>E/S Cash</th>
<th>Valeur Pf</th>
<th>Nb Part</th>
<th>Valeur Part</th>
<th>Cours ref</th>
<th>Valeur Part ref</th>
<th>No Id</th>
</tr>
</thead>
</table>
<br />
<br />
<script type="text/javascript">
var dataSet = ${dt_data};
$(document).ready(function() {
$.fn.dataTable.moment('DD/MM/YYYY');
$('#histo_list').DataTable({
data: dataSet,
pageLength: 50,
bLengthChange: false,
language: {
url: 'https://cdn.datatables.net/plug-ins/1.10.16/i18n/French.json'
},
columnDefs: [
{className:"text-right", "targets": [1,2,3,4,5,6]},
{className:"text-center", "targets": [7]},
{ "targets": 7,
"render": function (data, type, full, meta) {
// ajouter un link vers le formulaire
return '<a href="/histo_edit/' + data + '">' + data + '</a>';
},
},
],
order: [[ 0, "desc" ]]
});
});
</script>
</div><!-- content -->
</div>