templates/traitement/demande/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}RH - Gestion des bordereaux{% endblock %}
  3. {% block body %}
  4. {#    {% if operations|length > 0 %}#}
  5. {#        {% include 'includes/actions.html.twig' %}#}
  6. {#    {% endif %}#}
  7.     </div>
  8.     <div class="col-12 mb-4">
  9.         <div class="card  border-0 shadow">
  10.             <div class="card-body p-2 m-2">
  11.                 <table id="list_demande" class="table table-striped table-bordered" style="width:100%">
  12.                     <thead>
  13.                     <tr>
  14.                         <th>Type</th>
  15.                         <th>Message</th>
  16.                         <th>Created</th>
  17.                         <th>User</th>
  18.                         <th style="width: 10%">Statut</th>
  19.                     </tr>
  20.                     </thead>
  21.                     <tbody>
  22.                     </tbody>
  23.                 </table>
  24.             </div>
  25.         </div>
  26.     </div>
  27.     </div>
  28. {% endblock %}
  29. {% block javascripts %}
  30.     {{parent()}}
  31.     {{ encore_entry_script_tags('traitement_demande') }}
  32. {% endblock %}