40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
{% extends "admin/index.html" %}
|
|
{% load i18n admin_static %}
|
|
|
|
{% 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 for_user user %}
|
|
{% 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>
|
|
{% for permission in user.get_all_permissions %}
|
|
{% if permission == 'admin.delete_logentry' %}
|
|
<a href="{% url 'clear-logs' %}" style="padding-left: 18px;">{% trans 'Clear logs' %}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|