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 %}
+
+
+
{% trans 'Recent actions' %}
+
{% trans 'My actions' %}
+ {% load log %}
+ {% get_admin_log 10 as admin_log %}
+ {% if not admin_log %}
+
{% trans 'None available' %}
+ {% else %}
+
+ {% for entry in admin_log %}
+ -
+ {% if entry.is_deletion or not entry.get_admin_url %}
+ {{ entry.object_repr }}
+ {% else %}
+ {{ entry.object_repr }}
+ {% endif %}
+
+ {% if entry.content_type %}
+ {% filter capfirst %}{{ entry.content_type }}{% endfilter %}
+ {% else %}
+ {% trans 'Unknown content' %}
+ {% endif %}
+
+ {% endfor %}
+
+ {% endif %}
+
+
+{% endblock %}