templates/Pages/list.html.twig line 1

Open in your IDE?
  1. <table>
  2.     <thead>
  3.     <tr>
  4.         <th>N°</th>
  5.         <th>Titre</th>
  6.         <th>Actions</th>
  7.     </tr>
  8.     </thead>
  9.     {% for o in list %}
  10.     <tr>
  11.         <td>{{list|length-loop.index0}}</td>
  12.         <td>{{o.title}}</td>
  13.         <td>
  14.             <a href="{{url('pages-edit',{'id':o.id})}}" title="Modifier" class="action fas fa-edit btn-popup semi"></a>
  15.         </td>
  16.     </tr>
  17.     {% endfor %}
  18. </table>