mirror of https://github.com/interlegis/sigi.git
Guilherme Gondim
16 years ago
6 changed files with 93 additions and 33 deletions
@ -0,0 +1,8 @@ |
|||
{% extends "admin/app_index.html" %} |
|||
|
|||
{% block sidebar %} |
|||
<div id="content-related"> |
|||
{% include "snippets/modules/user.html" %} |
|||
{% include "snippets/modules/actions.html" %} |
|||
</div> |
|||
{% endblock %} |
@ -0,0 +1,32 @@ |
|||
{% load i18n log %} |
|||
<div class="module" id="recent-actions-module"> |
|||
<h2>Atividades recentes</h2> |
|||
<h3>Últimas atividades</h3> |
|||
{% get_admin_log 10 as admin_log %} |
|||
{% if not admin_log %} |
|||
<p>Não disponível.</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|escape }} |
|||
{% if not entry.is_deletion %}</a>{% endif %} |
|||
<br /> |
|||
<span class="mini quiet"> |
|||
{% filter capfirst %}{% trans entry.content_type.name %}{% endfilter %}, por |
|||
<i> |
|||
{% if entry.user.first_name %} |
|||
{{ entry.user.first_name }} |
|||
{% else %} |
|||
{{ entry.user.username }} |
|||
{% endif %} |
|||
</i> |
|||
</span> |
|||
</li> |
|||
{% endfor %} |
|||
</ul> |
|||
{% endif %} |
|||
</div> |
@ -0,0 +1,10 @@ |
|||
{% load i18n %} |
|||
<div class="module" id="user-module"> |
|||
<h2>Meu espaço</h2> |
|||
<h3>{{ user.get_full_name }}</h3> |
|||
|
|||
<ul> |
|||
<li><a href="{{ root_path }}password_change/">Alterar senha</a></li> |
|||
<li><a href="{{ root_path }}logout/">Encerrar sessão</a></li> |
|||
</ul> |
|||
</div> |
Loading…
Reference in new issue