Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (972 Bytes)

1
{% extends "im/base.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 {% if |lookup:"is_active" %}class="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="{% block innerpage.class %}full{% endblock %}">
24
{% block body %}{% endblock %}
25

    
26
    {% if PROFILE_EXTRA_LINKS %}
27
    <div class="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

    
35
</div>
36

    
37
{% endblock %}
38