<table>
<thead>
<tr>
<th class="data-enabled-header">N°</th>
<th>Titre</th>
<th>Date et Heure</th>
<th>Utilisateur</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>{{list|length-loop.index0}}</td>
<td>{{o.title}}</td>
<td>{{o.date|frdate}} à {{o.date|date('H:i')}}</td>
<td>{% if o.user %}{{o.user.lName~" "~o.user.fName}}{% endif %}</td>
<td>
<a href="{{path('articles-edit',{'id':o.id})}}" title="Modifier" class="action fas fa-edit btn-popup semi"></a>
<a href="{{o.URL ? o.URL : path('article',{'id':o.id,'slug':'preview'})}}" title="Lire l'article" class="action fab fa-readme" target="_blank"></a>
{% if o.banner %}<a data-target="{{asset(o.banner.file)}}" title="Voir la bannière" class="action fas fa-image os-image"></a>{%endif%}
{# {% if is_granted('ROLE_MODO') %} #}
<a href="{{path('articles-enable',{id:o.id})}}" class="action btn-flash fa {{ o.isEnabled ? 'fa-times' : 'fa-check' }}" title="{{ o.isEnabled ? 'Désactiver' : 'Activer' }}"></a>
<a href="{{path('articles-onefrontpage',{id:o.id})}}" class="action fa fa-paper-plane" title="Afficher cet article à la une (sur la page d\'accueil)"></a>
{# {% endif %} #}
</td>
</tr>
{% endfor %}
</table>