templates/ResourcesCategories/list.html.twig line 1

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