templates/pages/internes/cit/documentations/partials/__table.html.twig line 1

Open in your IDE?
  1. <table class="table table-striped table-hover table-sm">
  2.     <thead style="background: #e2ad38;color: #fff">
  3.         <tr>
  4.             <th style="padding: 10px">N°</th>
  5.             <th style="padding: 10px">Liste des documents</th>
  6.             <th style="padding: 10px" width="260">&nbsp;</th>
  7.         </tr>
  8.     </thead>
  9.     <tbody>
  10.     {% for index, documentation in documentations %}
  11.         <tr>
  12.             <td style="padding: 10px">{{ loop.index }}</td>
  13.             <td style="padding: 10px" title="{{ documentation.name }}">{{ documentation.name|u.truncate(80, '...') }}</td>
  14.             <td style="padding: 10px">
  15.                 <a href="#" class="btn btn-success btn-sm">Visualiser</a>
  16.                 <a href="#" class="btn btn-sm" style="background: #e2ad38;color: #fff">Télécharger</a>
  17.             </td>
  18.         </tr>
  19.     {% endfor %}
  20.     </tbody>
  21. </table>