8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-09 19:36:27 +00:00
re2o/users/templates/users/aff_users.html

30 lines
1 KiB
HTML
Raw Normal View History

2016-07-03 16:09:58 +00:00
<table class="table table-striped">
<thead>
<tr>
<th>Prénom</th>
<th>Nom</th>
<th>Pseudo</th>
<th>Fin de cotisation le</th>
<th>Connexion</th>
2016-07-03 16:09:58 +00:00
<th>Profil</th>
</tr>
</thead>
{% for user in users_list %}
2016-07-03 16:09:58 +00:00
<tr>
<td>{{ user.name }}</td>
<td>{{ user.surname }}</td>
<td>{{ user.pseudo }}</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>
2016-07-03 16:09:58 +00:00
</tr>
{% endfor %}
</table>