templates/course/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.             <a class="btn btn-info" href="{{ path('admin_courses_new') }}">
  6.                 <i class="fa fa-plus"></i>
  7.                
  8.             </a>
  9.         </div>
  10.         <div class="col-11 jumbotron">
  11.             <div class="m-1 box-shadow">
  12.                 <div class="card-header">
  13.                     <h4 class="my-0 font-weight-normal text-center text-justify text-uppercase">
  14.                         Liste  des cours par classe et par module  
  15.                                             
  16.                     </h4>
  17.                 </div>
  18.                 <table class="table table-striped">
  19.                     <thead>
  20.                         <tr>
  21.                             <th style="width:5%;" class="text-center" scope="col">
  22.                                 #
  23.                                                             
  24.                             </th>
  25.                             <th style="width:15%;" class="text-center" scope="col">
  26.                                 Domaine
  27.                                                             
  28.                             </th>
  29.                             <th style="width:15%;" class="text-center" scope="col">
  30.                                 Module
  31.                                                             
  32.                             </th>
  33.                             <th style="width:15%;" class="text-center" scope="col">
  34.                                 Code
  35.                                                             
  36.                             </th>
  37.                             <th style="width:20%;" class="text-center" scope="col">
  38.                                 Insitule
  39.                                                             
  40.                             </th>
  41.                             <th style="width:15%;" class="text-center" scope="col">
  42.                                 Coef
  43.                                                             
  44.                             </th>
  45.                           
  46.                             <th style="width:20%;" class="text-center" scope="col">
  47.                                 Action
  48.                                                             
  49.                             </th>
  50.                         </tr>
  51.                     </thead>
  52.                     <tbody>
  53.                         {% for room in rooms %}
  54.                             <tr>
  55.                                 <td class="text-center" colspan="1" scope="row">
  56.                                     {{ loop.index }}
  57.                                 </th>
  58.                                 <td class="text-center" colspan="7">
  59.                                     <a href="{{ path('admin_classrooms_show', {id: room.id}) }}">
  60.                                         <h3>
  61.                                             {{ room.name }}
  62.                                         </h3>
  63.                                     </a>
  64.                                 </td>
  65.                             </tr>
  66.                             {% for module in room.modules %}
  67.                                 <tr>
  68.                                     <td class="text-center" colspan="4" scope="row">
  69.                                         {{ loop.index }}
  70.                                     </th>
  71.                                     <td class="text-center" colspan="4">
  72.                                         <a href="{{ path('admin_modules_show', {id: module.id}) }}">
  73.                                             <h3>
  74.                                                 {{ module.name }}
  75.                                             </h3>
  76.                                         </a>
  77.                                     </td>
  78.                                 </tr>
  79.                                 {% for course in module.courses %}
  80.                                     <tr>
  81.                                         <td style="width:5%;" class="text-center" scope="row">
  82.                                             {{ loop.index }}
  83.                                         </th>
  84.                                         <td style="width:15%;" class="text-center">
  85.                                             <a href="{{ path('admin_domains_show', {id: course.domain.id}) }}">
  86.                                                 <h3>
  87.                                                     {{ course.domain.name }}
  88.                                                 </h3>
  89.                                             </a>
  90.                                         </td>
  91.                                         <td style="width:15%;" class="text-center">
  92.                                             <a href="{{ path('admin_modules_show', {id: course.module.id}) }}">
  93.                                                 <h3>
  94.                                                     {{ course.module.name }}
  95.                                                 </h3>
  96.                                             </a>
  97.                                         </td>
  98.                                         <td style="width:10%;" class="text-center">
  99.                                             <h3>
  100.                                                 {{ course.code }}
  101.                                             </h3>
  102.                                         </td>
  103.                                         <td style="width:20%;" class="text-center">
  104.                                             <h3>
  105.                                                 {{ course.wording }}
  106.                                             </h3>
  107.                                         </td>
  108.                                         <td style="width:15%;" class="text-center">
  109.                                             <h3>
  110.                                                 {{ course.coefficient }}
  111.                                             </h3>
  112.                                         </td>
  113.                                         
  114.                                         <td style="width:15%;" class="text-center">
  115.                                             <div class="btn-group">
  116.                                                 <a class="btn btn-outline-info" href="{{ path('admin_courses_show', {id: course.id}) }}">
  117.                                                     <i class="fa fa-eye" aria-hidden="true"></i>
  118.                                                 </a>
  119.                                                 <a class="btn btn-outline-warning" href="{{ path('admin_courses_edit', {id: course.id}) }}">
  120.                                                     <i class="fa fa-pencil-square-o" aria-hidden="true"></i>
  121.                                                 </a>
  122.                                             </div>
  123.                                         </td>
  124.                                     </tr>
  125.                                 {% endfor %}
  126.                             {% endfor %}
  127.                         {% endfor %}
  128.                     </tbody>
  129.                 </table>
  130.             </div>
  131.         </div>
  132.     </div>
  133. {% endblock %}