mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 20:03:11 +00:00
0a847b5a2c
Factorisation du machin
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
{% if users_list.paginator %}
|
|
{% include "pagination.html" with list=users_list %}
|
|
{% endif %}
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Prénom</th>
|
|
<th>Nom</th>
|
|
<th>Pseudo</th>
|
|
<th>Uid</th>
|
|
<th>Fin de cotisation le</th>
|
|
<th>Connexion</th>
|
|
<th>Profil</th>
|
|
</tr>
|
|
</thead>
|
|
{% for user in users_list %}
|
|
<tr>
|
|
<td>{{ user.name }}</td>
|
|
<td>{{ user.surname }}</td>
|
|
<td>{{ user.pseudo }}</td>
|
|
<td>{{ user.uid_number }}</td>
|
|
<td>{% if user.is_adherent %}{{ user.end_adhesion }}{% else %}Non adhérent{% endif %}</td>
|
|
<td>{% if user.has_access == True %}
|
|
<font color="green">Active</font>
|
|
{% else %}
|
|
<font color="red">Désactivée</font>
|
|
{% endif %}
|
|
</td>
|
|
<td><a href="{% url "users:profil" user.id%}" class="btn btn-primary btn-sm" role="button"><i class="glyphicon glyphicon-user"></i></a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|