<table>
<thead>
<tr>
<th>N°</th>
<th>Intitulé</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>{{loop.revindex}}</td>
<td>
<span class="upper h6">{{o.label}}</span>
<br><span class="success-alt upper">{{o.formation.label}}</span>
</td>
<td>
<a href="{{url('formationsthematics-edit',{'id':o.id})}}" title="Modifier" class="action fas fa-edit btn-popup semi"></a>
<a href="{{path('formationsthematics-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>