55 lines
1.4 KiB
XML
55 lines
1.4 KiB
XML
<metal:block use-macro="main_template">
|
|
<div metal:fill-slot="content">
|
|
|
|
<p>
|
|
<a href="${request.application_url}/" class="btn btn-default" role="button">
|
|
<span class="glyphicon glyphicon-chevron-left"></span> Retour</a>
|
|
</p>
|
|
|
|
<table id="emails_sent" class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Dossier</th>
|
|
<th>Client</th>
|
|
<th>Objet</th>
|
|
<th>No</th>
|
|
<th>Par</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');
|
|
$('#emails_sent').DataTable({
|
|
data: dataSet,
|
|
pageLength: 50,
|
|
bLengthChange: false,
|
|
language: {
|
|
url: 'https://cdn.datatables.net/plug-ins/1.10.16/i18n/French.json'
|
|
},
|
|
columnDefs: [
|
|
{ "targets": 3,
|
|
"render": function (data, type, row, meta) {
|
|
// ajouter un link vers le login
|
|
return '<a href="/emails_msg/' + row[4] + '">' + data + '</a>';
|
|
},
|
|
},
|
|
],
|
|
order: [[0, 'desc']],
|
|
});
|
|
|
|
});
|
|
</script>
|
|
|
|
</div><!-- content -->
|
|
</metal:block>
|
|
|
|
|