<table>
<thead>
<tr>
<th>N°</th>
<th>Titre</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.name}}{{o.abbreviation ? " ( "~o.abbreviation~" )"}}
<br><b>{{o.category ? o.category.label}}
</td>
<td>
<a href="{{url('structures-edit',{'id':o.id})}}" title="Modifier" class="action fas fa-edit btn-popup semi"></a>
{% if o.logo %}<a data-target="{{asset(o.logo.file)}}" title="Voir le logo" class="action fas fa-image os-image"></a>{%endif%}
<a href="{{path('structures-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>