45 lines
1.4 KiB
Twig
45 lines
1.4 KiB
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1 class="page-header">Gestion des Inscriptions</h1>
|
||
|
|
||
|
<div class="card">
|
||
|
<div class="card-header">
|
||
|
<i class="fa fa-table fa-fw"></i> Liste des Inscription
|
||
|
</div>
|
||
|
|
||
|
<div class="card-body">
|
||
|
<div class="dataTable_wrapper">
|
||
|
<table class="table table-striped table-bordered table-hover" id="dataTables" style="width:100%; font-size:11px;">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th width="70px" class="no-sort">Action</th>
|
||
|
<th width="200px">Login</th>
|
||
|
<th>Email</th>
|
||
|
<th>{{ appNiveau01label }}</th>
|
||
|
<th>Statut</th>
|
||
|
<th>Expire le</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block localscript %}
|
||
|
<script>
|
||
|
$(document).ready(function() {
|
||
|
$('#dataTables').DataTable({
|
||
|
columnDefs: [ { "targets": 'no-sort', "orderable": false } ],
|
||
|
responsive: true,
|
||
|
iDisplayLength: 100,
|
||
|
order: [[ 1, "asc" ]],
|
||
|
processing: true,
|
||
|
serverSide: true,
|
||
|
ajax: "{{ path('app_'~access~'_registration_tablelist') }}",
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
{% endblock %}
|