8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2025-01-10 10:14:30 +00:00
re2o/users/templates/users/aff_whitelists.html

65 lines
2.5 KiB
HTML
Raw Normal View History

{% comment %}
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
se veut agnostique au réseau considéré, de manière à être installable en
quelques clics.
Copyright © 2017 Gabriel Détraz
Copyright © 2017 Goulven Kermarec
Copyright © 2017 Augustin Lemesle
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
{% endcomment %}
2017-09-19 02:45:33 +00:00
{% if white_list.paginator %}
{% include "pagination.html" with list=white_list %}
{% endif %}
2017-12-27 23:10:30 +00:00
{% load acl %}
2016-07-04 18:04:11 +00:00
<table class="table table-striped">
<thead>
<tr>
<th>{% include "buttons/sort.html" with prefix='white' col="user" text="Utilisateur" %}</th>
<th>Raison</th>
<th>{% include "buttons/sort.html" with prefix='white' col="start" text="Date de début" %}</th>
<th>{% include "buttons/sort.html" with prefix='white' col="end" text="Date de fin" %}</th>
2016-07-04 18:04:11 +00:00
<th></th>
</tr>
</thead>
{% for whitelist in white_list %}
2017-09-19 02:45:33 +00:00
{% if whitelist.is_active %}
2017-09-21 15:46:40 +00:00
<tr class="success">
2017-09-19 02:45:33 +00:00
{% else %}
2017-09-21 15:46:40 +00:00
<tr>
2017-09-19 02:45:33 +00:00
{% endif %}
2016-07-04 18:04:11 +00:00
<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">
{% can_delete whitelist %}
{% include 'buttons/suppr.html' with href='users:del-whitelist' id=whitelist.id %}
{% acl_end %}
2017-12-27 23:10:30 +00:00
{% can_edit whitelist %}
2016-11-18 10:53:10 +00:00
{% include 'buttons/edit.html' with href='users:edit-whitelist' id=whitelist.id %}
2017-12-27 23:10:30 +00:00
{% acl_end %}
2016-11-18 10:53:10 +00:00
{% 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>
{% if white_list.paginator %}
{% include "pagination.html" with list=white_list %}
{% endif %}