mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-08 10:56:27 +00:00
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% if revisions_list.paginator %}
|
|
{% include "pagination.html" with list=revisions_list %}
|
|
{% endif %}
|
|
|
|
{% load logs_extra %}
|
|
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Objet modifié</th>
|
|
<th>Type de l'objet</th>
|
|
<th>Modification par</th>
|
|
<th>Date de modification</th>
|
|
<th>Commentaire</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for revision in revisions_list %}
|
|
{% for reversion in revision.version_set.all %}
|
|
<tr>
|
|
<td>{{ reversion.object|truncatechars:20 }}</td>
|
|
<td>{{ reversion.object|classname }}</td>
|
|
<td>{{ revision.user }}</td>
|
|
<td>{{ revision.date_created }}</td>
|
|
<td>{{ revision.comment }}</td>
|
|
{% if is_bureau %}
|
|
<td>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'logs:revert-action' revision.id %}">
|
|
<i class="glyphicon glyphicon-remove"></i>
|
|
Annuler
|
|
</a>
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</table>
|