templates/Members/list.html.twig line 1

Open in your IDE?
  1. <table>
  2.     <thead>
  3.     <tr>
  4.         <th class="data-enabled-header">N°</th>
  5.         <th>Nom et prénoms</th>
  6.         <th>Fonction</th>
  7.         <th>Actions</th>
  8.     </tr>
  9.     </thead>
  10.     {% for o in list %}
  11.     <tr data-enabled="{{o.isEnabled is not same as (null) ? o.isEnabled == 1 ? 1 : 0 : ''}}">
  12.         <td>{{loop.revindex}}</td>
  13.         <td>{{o.fName~" "~o.lName}}</td>
  14.         <td>{{o.title}}</td>
  15.         <td>
  16.             <a href="{{url('members-edit',{'id':o.id})}}" title="Modifier" class="action fas fa-edit btn-popup semi"></a>
  17.             {% if o.picture %}<a data-target="{{asset(o.picture.file)}}" title="Voir la photo" class="action fas fa-image os-image"></a>{%endif%}
  18.             <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>
  19.         </td>
  20.     </tr>
  21.     {% endfor %}
  22. </table>