mirror of https://github.com/interlegis/sigi.git
Browse Source
O menu de administracao foi "hardcoded" sem usar o django-treemenus, que não aceita gerar menus com template diferente.producao
Marcio Mazza
10 years ago
5 changed files with 14 additions and 55 deletions
@ -1,32 +0,0 @@ |
|||
{% 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|truncatewords_html:3 }} |
|||
{% 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> |
@ -1,9 +0,0 @@ |
|||
{% load i18n tree_menu_tags %} |
|||
{% if user.is_superuser %} |
|||
<div class="module" id="user-module"> |
|||
<h3>{{ user.get_full_name }}</h3> |
|||
|
|||
<h3>Administração</h3> |
|||
{% show_menu "Administrador" "unordered-list" %} |
|||
</div> |
|||
{% endif %} |
Loading…
Reference in new issue