summaryrefslogtreecommitdiffstats
path: root/templates/tasks.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tasks.html')
-rw-r--r--templates/tasks.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/tasks.html b/templates/tasks.html
index 4a6a02b..e9b12a9 100644
--- a/templates/tasks.html
+++ b/templates/tasks.html
@@ -4,6 +4,33 @@
{% block title %}Cambridge Expeditions to Austria{% endblock %}
+ {% block related %}
+ <h2>Recent Actions - admin user</h5>
+ {% load log %}
+ {% get_admin_log 10 as admin_log for_user 1 %}
+ {% if not admin_log %}
+ <p>No recent actions</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 %}
+ {{ 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.name}}{% endfilter %}</span>
+ {% else %}
+ <span class="mini quiet">Unknown content</span>
+ {% endif %}
+ </li>
+ {% endfor %}
+ </ul>
+ {% endif %}
+ {% endblock %}
+
{% block content %}
<h2>This is not fully working currently</h2>
<h2>The code behind this page is under repair</h2>