31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
|
{% extends "base_site" %}
|
||
|
|
||
|
{% block coltype %}colMS{% endblock %}
|
||
|
{% block bodyclass %}dashboard{% endblock %}
|
||
|
{% block breadcrumbs %}{% endblock %}
|
||
|
{% block content %}
|
||
|
<div id="content-main">
|
||
|
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block sidebar %}
|
||
|
<div id="content-related">
|
||
|
<div class="module" id="recent-actions-module">
|
||
|
<h2>Recent Actions</h2>
|
||
|
<h3>My Actions</h3>
|
||
|
{% load auth.log %}
|
||
|
{% get_admin_log 10 as admin_log for_user user %}
|
||
|
{% if not admin_log %}
|
||
|
<p>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 not entry.is_deletion %}<a href="{{ entry.get_admin_url }}">{% endif %}{{ entry.object_repr }}{% if not entry.is_deletion %}</a>{% endif %}<br /><span class="mini quiet">{{ entry.get_content_type.name|capfirst }}</span></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|