mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-12-25 16:33:47 +00:00
35 lines
1.2 KiB
HTML
35 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 %}
|
|
<tr>
|
|
<td>{% for reversion in revision.version_set.all %}{{ reversion.object|truncatechars:20 }}{% endfor %}</td>
|
|
<td>{% for reversion in revision.version_set.all %}{{ reversion.object|classname }}{% endfor %}</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 %}
|
|
</table>
|