From 528b5728553825c77138384bab69ce37e0efc4e5 Mon Sep 17 00:00:00 2001 From: Daniel Quinn <code@danielquinn.org> Date: Sun, 20 May 2018 16:29:00 +0100 Subject: [PATCH] Add hack to allow for logentries to show for all users. --- src/documents/templates/admin/index.html | 39 ++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/documents/templates/admin/index.html diff --git a/src/documents/templates/admin/index.html b/src/documents/templates/admin/index.html new file mode 100644 index 000000000..67c7dbeb1 --- /dev/null +++ b/src/documents/templates/admin/index.html @@ -0,0 +1,39 @@ +{% extends "admin/index.html" %} + + +{% load i18n static %} + + +{# This whole block is here just to override the `get_admin_log` line so #} +{# that the log entries aren't limited to the current user #} +{% block sidebar %} +<div id="content-related"> + <div class="module" id="recent-actions-module"> + <h2>{% trans 'Recent actions' %}</h2> + <h3>{% trans 'My actions' %}</h3> + {% load log %} + {% get_admin_log 10 as admin_log %} + {% if not admin_log %} + <p>{% trans 'None available' %}</p> + {% else %} + <ul class="actionlist"> + {% for entry in admin_log %} + <li class="{% if entry.is_addition %}addlink{% endif %}{% if entry.is_change %}changelink{% endif %}{% if entry.is_deletion %}deletelink{% endif %}"> + {% if entry.is_deletion or not entry.get_admin_url %} + {{ entry.object_repr }} + {% else %} + <a href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a> + {% endif %} + <br/> + {% if entry.content_type %} + <span class="mini quiet">{% filter capfirst %}{{ entry.content_type }}{% endfilter %}</span> + {% else %} + <span class="mini quiet">{% trans 'Unknown content' %}</span> + {% endif %} + </li> + {% endfor %} + </ul> + {% endif %} + </div> +</div> +{% endblock %}