{% extends 'base.html.twig' %}
{% block title %}RH - Gestion des bulletin{% endblock %}
{% block body %}
{% include 'includes/actions.html.twig' %}
<div class="col-12 mb-4">
<div class="card border-0 shadow">
<div class="card-body p-2 m-2">
<div class="row mb-2">
<div class="col-md-3">
<label>Periode</label>
<input type="month" class="periode form-control" id="periode" value="{{'now'|date('Y-m')}}" />
</div>
</div>
<hr>
<table id="list_employes" class="table table-striped table-bordered" style="width:100%">
<thead>
<tr>
<th>#</th>
<th>Bulletin</th>
<th>Contrat</th>
<th>Matricule</th>
<th>Nom</th>
<th>Prenom</th>
<th>Nombre jour travails</th>
<th>Net à paye</th>
<th>Problemes</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
{% include 'paie/bulletin/modals/probleme.html.twig' %}
{% include 'paie/bulletin/modals/bulletin_details.html.twig' %}
{% include 'paie/bulletin/modals/desactiver.html.twig' %}
{% endblock %}
{% block javascripts %}
{{parent()}}
{{ encore_entry_script_tags('paie_bulletin') }}
{% endblock %}