summaryrefslogtreecommitdiff
path: root/app/lib/grappelli/templates/admin/object_history.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/grappelli/templates/admin/object_history.html')
-rw-r--r--app/lib/grappelli/templates/admin/object_history.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/app/lib/grappelli/templates/admin/object_history.html b/app/lib/grappelli/templates/admin/object_history.html
new file mode 100644
index 0000000..1058fc9
--- /dev/null
+++ b/app/lib/grappelli/templates/admin/object_history.html
@@ -0,0 +1,51 @@
+{% extends "admin/base_site.html" %}
+
+<!-- LOADING -->
+{% load i18n %}
+
+<!-- BREADCRUMBS -->
+{% block breadcrumbs %}
+ <div id="breadcrumbs">
+ <a href="../../../../">{% trans 'Home' %}</a> &rsaquo;
+ <a href="../../../">{{ app_label|capfirst }}</a> &rsaquo;
+ <a href="../../">{{ module_name }}</a> &rsaquo;
+ <a href="../">{{ object|truncatewords:"18" }}</a> &rsaquo;
+ {% 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 %}