templates/center/index.html.twig line 1

Open in your IDE?
  1. {% extends 'admin/base.html.twig' %}
  2. {% block title %}Center index{% endblock %}
  3. {% block body %}
  4. <section class="mb-3 mb-lg-5">
  5.     <div class="card card-table mb-4">
  6.         <div class="card-header">
  7.             <div class="card-heading">
  8.                 <span>Gestion des Centres </span>
  9.                 <a href="{{ path('app_center_new') }}">
  10.                 <span class="badge rounded-pill me-2 p-2 bg-primary" style="float:right"> Ajouter un centre</span>
  11.                 </a>
  12.             </div>
  13.             
  14.     </div>
  15.     <div class="card-body">
  16.         <table class="table">
  17.             <thead>
  18.                 <tr>
  19.                     <th>Id</th>
  20.                     <th>Nom</th>
  21.                     <th>Pays</th>
  22.                     <th>Détails</th>
  23.                     <th>Modifier</th>
  24.                 </tr>
  25.             </thead>
  26.             <tbody>
  27.             {% for center in centers %}
  28.                 <tr>
  29.                     <td>{{ center.id }}</td>
  30.                     <td>{{ center.name }}</td>
  31.                     <td>{{ center.country }}</td>
  32.                     <td>
  33.                         <a href="{{ path('app_center_show', {'id': center.id}) }}" title="afficher les détails du centre">
  34.                             <svg class="svg-icon svg-icon-md me-3">
  35.                                 <svg class="theme-line-0"><use xlink:href="{{asset('icons/orion-svg-sprite.svg#find-1')}}"></use></svg>
  36.                             </svg>
  37.                         </a>
  38.                     </td>
  39.                     <td>
  40.                         <a href="{{ path('app_center_edit', {'id': center.id}) }}" title="modifier un centre">
  41.                             <svg class="svg-icon svg-icon-md me-3">
  42.                             <svg class="theme-line-0"><use xlink:href="{{asset('icons/orion-svg-sprite.svg#pencil-1')}}"></use></svg>
  43.                             </svg>
  44.                         </a>
  45.                     </td>
  46.                 </tr>
  47.             {% else %}
  48.                 <tr>
  49.                     <td colspan="4">Pas de centre trouvé</td>
  50.                 </tr>
  51.             {% endfor %}
  52.             </tbody>
  53.         </table>
  54.     </div>
  55. </section>
  56. {% endblock %}