<table>
<thead>
<tr>
<th class="data-enabled-header">N°</th>
<th>Nom et prénoms</th>
<th>Fonction</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>{{o.fName~" "~o.lName}}</td>
<td>{{o.title}}</td>
<td>
<a href="{{url('members-edit',{'id':o.id})}}" title="Modifier" class="action fas fa-edit btn-popup semi"></a>
{% if o.picture %}<a data-target="{{asset(o.picture.file)}}" title="Voir la photo" class="action fas fa-image os-image"></a>{%endif%}
<a href="{{path('members-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>