mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-07 10:26:25 +00:00
159 lines
6.3 KiB
HTML
159 lines
6.3 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 versions_list.paginator %}
|
|
{% include "pagination.html" with list=versions_list %}
|
|
{% endif %}
|
|
|
|
{% load logs_extra %}
|
|
{% load acl %}
|
|
|
|
{% load i18n %}
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
{% trans "Date" as tr_date %}
|
|
<th>{% include "buttons/sort.html" with prefix='sum' col='date' text=tr_date %}</th>
|
|
<th>{% trans "Editing" %}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for v in versions_list %}
|
|
{% if v.version.content_type.model == 'ban' %}
|
|
<tr class="danger">
|
|
<td>{{ v.datetime }}</td>
|
|
<td>
|
|
{% blocktrans with username=v.username %}{{ username }} has banned{% endblocktrans %}
|
|
<a href="{% url 'users:profil' v.version.object.user_id %}">{{ v.version.object.user.get_username }}</a>
|
|
(<i>
|
|
{% if v.version.object.raison == '' %}
|
|
{% trans "No reason" %}
|
|
{% else %}
|
|
{{ v.version.object.raison }}
|
|
{% endif %}
|
|
</i>)
|
|
</td>
|
|
{% can_edit_history %}
|
|
<td>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'logs:revert-action' v.rev_id %}">
|
|
<i class="fa fa-times"></i>
|
|
{% trans "Cancel" %}
|
|
</a>
|
|
</td>
|
|
{% acl_end %}
|
|
</tr>
|
|
{% elif v.version.content_type.model == 'whitelist' %}
|
|
<tr class="success">
|
|
<td>{{ v.datetime }}</td>
|
|
<td>
|
|
{% blocktrans with username=v.username %}{{ username }} has graciously authorised{% endblocktrans %}
|
|
<a href="{% url 'users:profil' v.version.object.user_id %}">{{ v.version.object.user.get_username }}</a>
|
|
(<i>
|
|
{% if v.version.object.raison == '' %}
|
|
{% trans "No reason" %}
|
|
{% else %}
|
|
{{ v.version.object.raison }}
|
|
{% endif %}
|
|
</i>)
|
|
</td>
|
|
{% can_edit_history%}
|
|
<td>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'logs:revert-action' v.rev_id %}">
|
|
<i class="fa fa-times"></i>
|
|
{% trans "Cancel" %}
|
|
</a>
|
|
</td>
|
|
{% acl_end %}
|
|
</tr>
|
|
{% elif v.version.content_type.model == 'user' %}
|
|
<tr>
|
|
<td>{{ v.datetime }}</td>
|
|
<td>
|
|
{% blocktrans with username=v.username %}{{ username }} has updated{% endblocktrans %}
|
|
<a href="{% url 'users:profil' v.version.object.id %}">{{ v.version.object.get_username }}</a>
|
|
{% if v.comment != '' %}
|
|
(<i>{{ v.comment }}</i>)
|
|
{% endif %}
|
|
</td>
|
|
{% can_edit_history %}
|
|
<td>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'logs:revert-action' v.rev_id %}">
|
|
<i class="fa fa-times"></i>
|
|
{% trans "Cancel" %}
|
|
</a>
|
|
</td>
|
|
{% acl_end %}
|
|
</tr>
|
|
{% elif v.version.content_type.model == 'vente' %}
|
|
<tr>
|
|
<td>{{ v.datetime }}</td>
|
|
<td>
|
|
{% blocktrans with username=v.username number=v.version.object.number name=v.version.object.name %}{{ username }} has sold {{ number }}x {{ name }}{% endblocktrans %}
|
|
{% with invoice=v.version.object.facture %}
|
|
{% if invoice|is_facture %}
|
|
{% trans " to" %}
|
|
<a href="{% url 'users:profil' v.version.object.facture.facture.user_id %}">{{ v.version.object.facture.facture.user.get_username }}</a>
|
|
{% if v.version.object.iscotisation %}
|
|
(<i>{% blocktrans with duration=v.version.object.duration %}+{{ duration }} months{% endblocktrans %}</i>)
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
</td>
|
|
{% can_edit_history %}
|
|
<td>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'logs:revert-action' v.rev_id %}">
|
|
<i class="fa fa-times"></i>
|
|
{% trans "Cancel" %}
|
|
</a>
|
|
</td>
|
|
{% acl_end %}
|
|
</tr>
|
|
{% elif v.version.content_type.model == 'interface' %}
|
|
<tr>
|
|
<td>{{ v.datetime }}</td>
|
|
<td>
|
|
{% blocktrans with username=v.username %}{{ username }} has edited an interface of{% endblocktrans %}
|
|
<a href="{% url 'users:profil' v.version.object.machine.user_id %}">{{ v.version.object.machine.user.get_username }}</a>
|
|
{% if v.comment != '' %}
|
|
(<i>{{ v.comment }}</i>)
|
|
{% endif %}
|
|
</td>
|
|
{% can_edit_history %}
|
|
<td>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'logs:revert-action' v.rev_id %}">
|
|
<i class="fa fa-times"></i>
|
|
{% trans "Cancel" %}
|
|
</a>
|
|
</td>
|
|
{% acl_end %}
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% if versions_list.paginator %}
|
|
{% include "pagination.html" with list=versions_list %}
|
|
{% endif %}
|
|
|