templates/abscence_sheet/liststudents.html.twig line 1

Open in your IDE?
  1. {% if students is defined%}
  2.     <div class="col-md-1  table-responsive">
  3.     </div>
  4.     <div class="col-md-10  table-responsive">
  5.         
  6.         
  7.                         
  8.         <table class="table table-bordered table-hover table-sortable" id="tab_logic">
  9.             <thead>
  10.                 <tr>
  11.                     <th style="width:10%;" class="text-center">Matricule</th>
  12.                     <th style="width:30%;" class="text-center" >Nom et prĂ©nom</th>
  13.                     <th style="width:20%;" class="text-center" >Heures d'abscence</th>
  14.                     <th style="width:30%;" class="text-center" >Raison</th>
  15.                 </tr>
  16.             </thead>
  17.             
  18.             <tbody>
  19.                 {%for student in students%}
  20.                     <tr id='addr0' data-id="0" class="hidden">
  21.                         <td data-name="name">
  22.                             {{student.matricule}}
  23.                         </td>
  24.                         <td data-name="name">
  25.                             {{student.lastname}} {{student.firstname}}
  26.                         </td>
  27.                         <td data-name="desc">
  28.                             <input type="number" id="{{student.matricule}}"  placeholder="0...100"
  29.                                    min="0" max="180" class="form-control value" name="{{student.matricule}}note"/>
  30.                         </td>
  31.                       
  32.                         <td data-name="desc">
  33.                             <input type="text" placeholder="Raison" class="form-control" value="RAS" name="{{student.matricule}}raison" />
  34.                         </td>
  35.                     </tr>
  36.                 {% endfor %}
  37.             </tbody>
  38.         </table>
  39.     </div>
  40.     <div class="col-md-1  table-responsive">
  41.     </div>
  42. {% endif %}