<table> <thead> <tr> <th>N°</th> <th>Titre</th> <th>Actions</th> </tr> </thead> {% for o in list %} <tr> <td>{{list|length-loop.index0}}</td> <td>{{o.title}}</td> <td> <a href="{{url('pages-edit',{'id':o.id})}}" title="Modifier" class="action fas fa-edit btn-popup semi"></a> </td> </tr> {% endfor %}</table>