blob: 1058fc95e040cffbe90c85246eeaa993c0b3d99d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{% extends "admin/base_site.html" %}
<!-- LOADING -->
{% load i18n %}
<!-- BREADCRUMBS -->
{% block breadcrumbs %}
<div id="breadcrumbs">
<a href="../../../../">{% trans 'Home' %}</a> ›
<a href="../../../">{{ app_label|capfirst }}</a> ›
<a href="../../">{{ module_name }}</a> ›
<a href="../">{{ object|truncatewords:"18" }}</a> ›
{% trans 'History' %}
</div>
{% endblock %}
<!-- CONTENT -->
{% block content %}
<div class="container-grid object-history">
<div class="module">
{% if action_list %}
<table id="change-history">
<thead>
<tr>
<th scope="col">{% trans 'Date/time' %}</th>
<th scope="col">{% trans 'User' %}</th>
<th scope="col">{% trans 'Action' %}</th>
</tr>
</thead>
<tbody>
{% for action in action_list %}
<tr>
<th scope="row">{{ action.action_time|date:_("DATETIME_FORMAT") }}</th>
<td>{{ action.user.username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %}</td>
<td>
{% ifequal forloop.counter 1 %}
{% trans "Created object" %}
{% else %}
{{ action.change_message }}
{% endifequal %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p>{% trans "This object doesn't have a change history. It probably wasn't added via this admin site." %}</p>
{% endif %}
</div>
</div>
{% endblock %}
|