mirror of https://github.com/interlegis/sigi.git
Guilherme Gondim
15 years ago
14 changed files with 136 additions and 65 deletions
@ -1,7 +1 @@ |
|||||
.dashboard #content-main .module { |
.dashboard #content-main .module, .dashboard #content-main .module caption, .dashboard #content-main .module table { width:100%; } |
||||
width: 100%; |
|
||||
} |
|
||||
|
|
||||
.dashboard #content-main caption { |
|
||||
width: 100%; |
|
||||
} |
|
||||
|
After Width: | Height: | Size: 49 B |
After Width: | Height: | Size: 50 B |
After Width: | Height: | Size: 155 B |
After Width: | Height: | Size: 864 B |
@ -1,21 +1,11 @@ |
|||||
{% load i18n %} |
{% load i18n tree_menu_tags %} |
||||
<div class="module" id="user-module"> |
<div class="module" id="user-module"> |
||||
<h2>Meu espaço</h2> |
<h2>Meu espaço</h2> |
||||
<h3>{{ user.get_full_name }}</h3> |
<h3>{{ user.get_full_name }}</h3> |
||||
{% url django-admindocs-docroot as docsroot %} |
{% show_menu "Usuário" "unordered-list" %} |
||||
<ul> |
|
||||
<li><a href="{{ root_path }}password_change/">Alterar |
|
||||
senha</a></li> |
|
||||
{% if docsroot %}<li><a href="{{ docsroot }}">Documentação</a></li>{% endif %} |
|
||||
<li><a href="{{ root_path }}logout/">Encerrar sessão</a></li> |
|
||||
</ul> |
|
||||
|
|
||||
{% if user.is_superuser %} |
{% if user.is_superuser %} |
||||
<h3>Administração</h3> |
<h3>Administração</h3> |
||||
<ul> |
{% show_menu "Administrador" "unordered-list" %} |
||||
<li><a href="/auth/">Usuários & Grupos</a></li> |
|
||||
<li><a href="/sites/">Sites</a></li> |
|
||||
<li><a href="/contatos/">Contatos</a></li> |
|
||||
</ul> |
|
||||
{% endif %} |
{% endif %} |
||||
</div> |
</div> |
||||
|
@ -0,0 +1,9 @@ |
|||||
|
{% load tree_menu_tags %} |
||||
|
|
||||
|
{% ifequal menu_type "unordered-list" %} |
||||
|
<ul> |
||||
|
{% for menu_item in menu.root_item.children %} |
||||
|
{% show_menu_item menu_item %} |
||||
|
{% endfor %} |
||||
|
</ul> |
||||
|
{% endifequal %} |
@ -0,0 +1,20 @@ |
|||||
|
{% load tree_menu_tags %} |
||||
|
|
||||
|
{% ifequal menu_type "unordered-list" %} |
||||
|
{% if menu_item.has_children %} |
||||
|
<li> |
||||
|
{% if menu_item.url %} |
||||
|
<a href="{{ menu_item.url }}">{{ menu_item.caption }}</a> |
||||
|
{% else %} |
||||
|
{{ menu_item.caption }} |
||||
|
{% endif %} |
||||
|
<ul> |
||||
|
{% for child in menu_item.children %} |
||||
|
{% show_menu_item child %} |
||||
|
{% endfor %} |
||||
|
</ul> |
||||
|
</li> |
||||
|
{% else %} |
||||
|
<li><a href="{{ menu_item.url }}">{{ menu_item.caption }}</a></li> |
||||
|
{% endif %} |
||||
|
{% endifequal %} |
Loading…
Reference in new issue