mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 19:33:11 +00:00
94 lines
3.1 KiB
HTML
94 lines
3.1 KiB
HTML
{% extends 'logs/sidebar.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 © 2020 Jean-Romain Garnier
|
|
|
|
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 %}
|
|
|
|
{% load bootstrap3 %}
|
|
{% load i18n %}
|
|
{% load logs_extra %}
|
|
|
|
{% block title %}{% trans "History" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>{% blocktrans %}History of {{ title }}{% endblocktrans %}</h2>
|
|
|
|
{% if events %}
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Date" %}</th>
|
|
<th>{% trans "Performed by" %}</th>
|
|
<th>{% trans "Edited" %}</th>
|
|
<th>{% trans "Comment" %}</th>
|
|
</tr>
|
|
</thead>
|
|
{% for event in events %}
|
|
<tr>
|
|
<td>{{ event.date }}</td>
|
|
<td>
|
|
{% if event.performed_by %}
|
|
<a href="{% url 'users:profil' userid=event.performed_by.id %}" title=tr_view_the_profile>
|
|
{{ event.performed_by }}
|
|
</a>
|
|
{% else %}
|
|
{% trans "Unknown" %}
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% for edit in event.edits %}
|
|
{% if edit.1 is None and edit.2 is None %}
|
|
<strong>{{ edit.0 }}</strong><br/>
|
|
{% elif edit.1 is None %}
|
|
<strong>{{ edit.0 }}:</strong>
|
|
<i class="text-success"> {{ edit.2 }}</i><br/>
|
|
{% else %}
|
|
<strong>{{ edit.0 }}:</strong>
|
|
<i class="text-danger"> {{ edit.1 }} </i>
|
|
➔ <i class="text-success">{{ edit.2 }}</i><br/>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</td>
|
|
<td>{{ event.comment }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% include 'pagination.html' with list=events %}
|
|
{% else %}
|
|
<h3>{% trans "No event" %}</h3>
|
|
{% endif %}
|
|
|
|
{% if related_history %}
|
|
|
|
<h2>{% blocktrans %}Related elements{% endblocktrans %}</h2>
|
|
|
|
<ul>
|
|
{% for related in related_history %}
|
|
<li>
|
|
<a title="{% trans "History" %}" href="{% url 'logs:detailed-history' related.model_name related.object_id %}">{{ related.model_name }} - {{ related.name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
<br />
|
|
<br />
|
|
<br />
|
|
|
|
{% endblock %}
|