mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
103 lines
3.9 KiB
HTML
103 lines
3.9 KiB
HTML
{% 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 %}
|
|
|
|
{% if revisions_list.paginator %}
|
|
{% include "pagination.html" with list=revisions_list %}
|
|
{% endif %}
|
|
|
|
{% load logs_extra %}
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Modification</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for rev in reversions_list %}
|
|
<tr>
|
|
<td>{{ rev.datetime }}</td>
|
|
{% if rev.rev.content_type.name == 'ban' %}
|
|
<td>
|
|
{{ rev.username }} a banni
|
|
<a href="{% url 'users:profil' rev.rev.object.user_id %}">{{ rev.rev.object.user.get_username }}</a>
|
|
(<i>
|
|
{% if rev.rev.object.raison == '' %}
|
|
Aucune raison
|
|
{% else %}
|
|
{{ rev.rev.object.raison }}
|
|
{% endif %}
|
|
</i>)
|
|
</td>
|
|
{% elif rev.rev.content_type.name == 'whitelist' %}
|
|
<td>
|
|
{{ rev.username }} a autorisé gracieusement
|
|
<a href="{% url 'users:profil' rev.rev.object.user_id %}">{{ rev.rev.object.user.get_username }}</a>
|
|
(<i>
|
|
{% if rev.rev.object.raison == '' %}
|
|
Aucune raison
|
|
{% else %}
|
|
{{ rev.rev.object.raison }}
|
|
{% endif %}
|
|
</i>)
|
|
</td>
|
|
{% elif rev.rev.content_type.name == 'user' %}
|
|
<td>
|
|
{{ rev.username }} a mis à jour
|
|
<a href="{% url 'users:profil' rev.rev.object.id %}">{{ rev.rev.object.get_username }}</a>
|
|
{% if rev.comment != '' %}
|
|
(<i>{{ rev.comment }}</i>)
|
|
{% endif %}
|
|
</td>
|
|
{% elif rev.rev.content_type.name == 'vente' %}
|
|
<td>
|
|
{{ rev.username }} a vendu {{ rev.rev.object.number }}x {{ rev.rev.object.name }} à
|
|
<a href="{% url 'users:profil' rev.rev.object.facture.user_id %}">{{ rev.rev.object.facture.user.get_username }}</a>
|
|
{% if rev.rev.object.iscotisation %}
|
|
(<i>+{{ rev.rev.object.duration }} mois</i>)
|
|
{% endif %}
|
|
</td>
|
|
{% elif rev.rev.content_type.name == 'interface' %}
|
|
<td>
|
|
{{ rev.username }} a modifié une interface de
|
|
<a href="{% url 'users:profil' rev.rev.object.machine.user_id %}">{{ rev.rev.object.machine.user.get_username }}</a>
|
|
{% if rev.comment != '' %}
|
|
(<i>{{ rev.comment }}</i>)
|
|
{% endif %}
|
|
</td>
|
|
{% endif %}
|
|
{% if is_bureau %}
|
|
<td>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'logs:revert-action' rev.id %}">
|
|
<i class="glyphicon glyphicon-remove"></i>
|
|
Annuler
|
|
</a>
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|