8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-30 19:14:49 +00:00
re2o/users/templates/users/aff_whitelists.html
2016-07-05 00:14:19 +02:00

22 lines
738 B
HTML

<table class="table table-striped">
<thead>
<tr>
<th>Utilisateur</th>
<th>Raison</th>
<th>Date de début</th>
<th>Date de fin</th>
<th></th>
</tr>
</thead>
{% for whitelist in white_list %}
<tr>
<td>{{ whitelist.user }}</td>
<td>{{ whitelist.raison }}</td>
<td>{{ whitelist.date_start }}</td>
<td>{{ whitelist.date_end }}</td>
<td><a class="btn btn-primary btn-sm" role="button" href="{% url 'users:edit-whitelist' whitelist.id %}"><i class="glyphicon glyphicon-flag"></i> Editer</a></td>
</tr>
{% endfor %}
</table>