|
@@ -16,6 +16,7 @@
|
|
|
<th>Mail</th>
|
|
|
<th>Test Mail</th>
|
|
|
<th>Roles</th>
|
|
|
+ <th>Activé</th>
|
|
|
<th>Actions</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
@@ -35,8 +36,11 @@
|
|
|
<td>{{ user.mail }}</td>
|
|
|
<td><a href="{{ path('admin_sendmailtest', {"id": user.id}) }}">Envoyer un mail test</a></td>
|
|
|
<td>{% for role in user.roles %}<p>{{ role }}</p>{% endfor %}</td>
|
|
|
+ <td>{{ user.enabled }}</td>
|
|
|
<td>
|
|
|
- {% if user != app.user %}<a href="{{ path('admin_deluser', {'id': user.id}) }}"><i class="fa fa-trash fa-lg" style="color:Tomato;"></i></a>{% endif %}
|
|
|
+ {% if user != app.user %}
|
|
|
+ <a href="{{ path('admin_deluser', {'id': user.id}) }}"><i class="fa fa-trash fa-lg" style="color:Tomato;"></i></a>
|
|
|
+ {% endif %}
|
|
|
<a href="{{ path('admin_edituser', {'id': user.id}) }}"><i class="fa fa-edit fa-lg" style="color:DodgerBlue;"></i></a>
|
|
|
</td>
|
|
|
</tr>
|