<table >
<thead>
<tr>
<th>ID</th>
<th>Nom</th>
<th>Actions</th>
</tr>
</thead>
{% for o in list %}
<tr>
<td>{{ o.id }}</td>
<td class="noactions">{{ o.label }}</td>
<td>
<a href="{{url('resourcescategories-edit',{'id':o.id})}}" title="Modifier" class="action fas fa-edit btn-edit"></a>
</td>
</tr>
{% endfor %}
</table>