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

47 lines
1.6 KiB
HTML
Raw Normal View History

{% if users_list.paginator %}
<ul class="pagination nav navbar-nav">
{% if users_list.has_previous %}
<li><a href="?page={{ users_list.previous_page_number }}">Suivants</a></li>
{% endif %}
{% for page in users_list.paginator.page_range %}
<li class="{% if users_list.number == page %}active{% endif %}"><a href="?page={{page }}">{{ page }}</a></li>
{% endfor %}
{% if users_list.has_next %}
<li> <a href="?page={{ users_list.next_page_number }}">Précédents</a></li>
{% endif %}
</ul>
{% endif %}
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>
2016-10-07 19:30:05 +00:00
<th>Uid</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>
2016-10-07 19:30:05 +00:00
<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>
2016-07-03 16:09:58 +00:00
</tr>
{% endfor %}
</table>