templates/paie/bulletin/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}RH - Gestion des bulletin{% endblock %}
  3. {% block body %}
  4.     {% include 'includes/actions.html.twig' %}
  5.   
  6.         <div class="col-12 mb-4">
  7.             <div class="card  border-0 shadow">
  8.                 <div class="card-body p-2 m-2">
  9.                     <div class="row mb-2">
  10.                         <div class="col-md-3">
  11.                             <label>Periode</label>
  12.                             <input type="month" class="periode form-control" id="periode" value="{{'now'|date('Y-m')}}" />
  13.                         </div>
  14.                     </div>
  15.                     <hr>
  16.                     <table id="list_employes" class="table table-striped table-bordered" style="width:100%">
  17.                         <thead>
  18.                             <tr>
  19.                                 <th>#</th>
  20.                                 <th>Bulletin</th>
  21.                                 <th>Contrat</th>
  22.                                 <th>Matricule</th>
  23.                                 <th>Nom</th>
  24.                                 <th>Prenom</th>
  25.                                 <th>Nombre jour travails</th>
  26.                                 <th>Net à paye</th>
  27.                                 <th>Problemes</th>
  28.                             </tr>
  29.                         </thead>
  30.                         <tbody>
  31.                         </tbody>
  32.                     </table>
  33.                 </div>
  34.             </div>
  35.         </div>
  36.     {% include 'paie/bulletin/modals/probleme.html.twig' %}
  37.     {% include 'paie/bulletin/modals/bulletin_details.html.twig' %}
  38.     {% include 'paie/bulletin/modals/desactiver.html.twig' %}
  39. {% endblock %}
  40. {% block javascripts %}
  41.     {{parent()}}
  42.     {{ encore_entry_script_tags('paie_bulletin') }}
  43. {% endblock %}