templates/classroom/index.html.twig line 1

Open in your IDE?
  1. {% extends 'layout/backEndLayout.html.twig' %}
  2. {% block content %}
  3.         <div class="row  mt-4">
  4.             <div class="col-1">
  5.                 {% if is_granted('ROLE_ADMIN') %}
  6.                     <a class="btn btn-info" href="{{ path('admin_classrooms_new') }}">
  7.                         <i class="fa fa-plus"></i>                                                 
  8.                     </a>
  9.                 {% endif %}
  10.              </div>
  11.             <div class="col-11 jumbotron">
  12.                 <div class="card-header d-inline-flex">
  13.                     <h4 class="my-0 font-weight-normal text-center   text-uppercase">
  14.                         &emsp; &emsp; &emsp; &emsp; &emsp;  &emsp; &emsp; &emsp; &emsp; &emsp; &emsp; &emsp;  Liste des salles de classe 
  15.                     </h4>
  16.                 </div>
  17.                 <table width="120%" class="table table-striped table-sm">
  18.                     <thead>
  19.                         <tr>
  20.                            
  21.                             <th style="width:18%;" class="text-center" scope="col">
  22.                                 Nom
  23.                             </th>
  24.                             <th style="width:15%;" class="text-center" scope="col">
  25.                                 Professeur titulaire
  26.                             </th>
  27.                             <th style="width:75%;" class="text-center" scope="col">
  28.                                 Action
  29.                             </th>
  30.                         </tr>
  31.                     </thead>
  32.                     <tbody>
  33.                         {% for room in classrooms %}
  34.                             <tr>
  35.                                
  36.                                 <td>
  37.                                     <a href="{{ path('admin_classrooms_show', {id: room.id }) }}">
  38.                                         {{ room.name }}
  39.                                     </a>
  40.                                 </td>
  41.                                 <td>
  42.                                     {% if room.id in mainTeachers|keys %}
  43.                                        {{  mainTeachers[room.id].fullName}}
  44.                                     {% endif %}
  45.                                 </td>
  46.                                 <td>
  47.                                     <div class="btn-group">
  48.                                     {% if is_granted('ROLE_ADMIN') %}
  49.                                         <a class="btn btn-outline-warning " href="{{ path('admin_classrooms_edit', {id: room.id}) }}">
  50.                                             <i class="fa fa-edit">
  51.                                                
  52.                                             </i>
  53.                                         </a>
  54.                                         <a class="btn btn-outline-dark " target="_blank" href="{{ path('admin_classroom_insolvent', {id: room.id}) }}">
  55.                                             <i class="fa fa-users" aria-hidden="true">
  56.                                                 
  57.                                             </i>
  58.                                         </a>
  59.                                         <a class="btn btn-file" target="_blank" href="{{ path('admin_payment_plan_print', {id: room.id}) }}">
  60.                                             <i class="fa fa-money" aria-hidden="true">
  61.                                                 &nbsp;Echeancier
  62.                                             </i>
  63.                                         </a>
  64.                                      {% endif %}
  65.                                         <a class="btn btn-file" target="_blank" href="{{ path('admin_classrooms_fichesimple', {id: room.id}) }}">
  66.                                             <i class="fa fa-file-pdf-o" aria-hidden="true">
  67.                                                 &nbsp;Repport Notes
  68.                                             </i>
  69.                                         </a>
  70.                                         <a class="btn btn-outline-info " target="_blank" href="{{ path('admin_classrooms_presentation', {id: room.id}) }}">
  71.                                             <i class="fa fa-users" aria-hidden="true">
  72.                                         
  73.                                             </i>
  74.                                         </a>
  75.                                       
  76.                                         <a class="btn btn-file" target="_blank" href="{{ path('admin_classrooms_recapitulatif', {room: room.id, seq : seq}) }}">
  77.                                             <i class="fa fa-file" aria-hidden="true">
  78.                                                 &nbsp;Recap. vierge
  79.                                             </i>
  80.                                         </a>
  81.                                         {#<a class="btn btn-file" target="_blank" href="{{ path('admin_classrooms_blanc_ann', {room: room.id}) }}">
  82.                                             <i class="fa fa-th-list" aria-hidden="true">
  83.                                                 &nbsp;Fiche annu.
  84.                                             </i>
  85.                                         </a>#}
  86.                                        
  87.                                         <a class="btn btn-file" target="_blank" href="{{ path('admin_classrooms_disciplinary_record', {id: room.id}) }}">
  88.                                             <i class="fa fa-th-list" aria-hidden="true">
  89.                                                 &nbsp;Fiche discipl.
  90.                                             </i>
  91.                                         </a>
  92.                                     </div>
  93.                                 </td>
  94.                             </tr>
  95.                         {% endfor %}
  96.                     </tbody>
  97.                 </table>
  98.             </div>
  99.         </div>
  100. {% endblock %}
  101. {% block footer %}
  102.     {{ parent() }}
  103. {% endblock %}