Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / account_base.html @ df4c7b3c

History | View | Annotate | Download (997 Bytes)

1
{% extends "im/base_two_cols.html" %}
2

    
3
{% load filters %}
4

    
5
{% block page.title %}Profile{% endblock %}
6
{% block page.nav.classes %}{% endblock %}
7

    
8
{% block page.quicknav.items %}
9
        <li class="{% block signup_class %}{% endblock %}">
10
            <a href="{% url astakos.im.views.logout %}">LOGOUT</a>
11
        </li>
12
{% endblock %}
13

    
14
{% block page.nav.items %}
15
    {% for item in menu%}
16
        <li class="{% if item|lookup:"is_active" %}active{% endif %}">
17
            <a href="{{ item|lookup:"url" }}">{{ item|lookup:"name" }}</a>
18
        </li>
19
    {% endfor %}
20
{% endblock %}
21
    
22
{% block page.body %}
23
<div class="maincol {% block innerpage.class %}full{% endblock %}">
24
{% block body %}{% endblock %}
25

    
26
    {% if PROFILE_EXTRA_LINKS %}
27
    <div class="extra-buttons buttons-list fixpos">
28
        {% for href, name in PROFILE_EXTRA_LINKS.items %}
29
            <a class="button back right" href="{{ href }}">{{ name }}</a>
30
        {% endfor %}
31
    </div>
32
    {% endif %}
33

    
34
</div>
35

    
36
{% endblock %}