<table >
<thead>
<tr>
<th>ID</th>
<th>Nom</th>
<th>Actions</th>
</tr>
</thead>
{% for o in list %}
<tr data-enabled="{{o.isEnabled is not same as (null) ? o.isEnabled == 1 ? 1 : 0 : ''}}">
<td>{{ o.id }}</td>
<td class="noactions">{{ o.label }}</td>
<td>
<a href="{{url('structurescategories-edit',{'id':o.id})}}" title="Modifier" class="action fas fa-edit btn-edit"></a>
<a href="{{path('structurescategories-enable',{id:o.id})}}" class="action btn-flash fa {{ o.isEnabled ? 'fa-times' : 'fa-check' }}" title="{{ o.isEnabled ? 'Désactiver' : 'Activer' }}"></a>
</td>
</tr>
{% endfor %}
</table>