8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-08-10 01:05:01 +00:00
re2o/users/templates/users/aff_whitelists.html

27 lines
885 B
HTML
Raw Normal View History

2016-07-04 18:04:11 +00:00
<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>
2016-11-18 10:53:10 +00:00
<td class="text-right">
{% if is_cableur %}
{% include 'buttons/edit.html' with href='users:edit-whitelist' id=whitelist.id %}
{% endif %}
{% include 'buttons/history.html' with href='users:history' name='whitelist' id=whitelist.id %}
</td>
2016-07-04 18:04:11 +00:00
</tr>
{% endfor %}
</table>