merge with master
[astakos] / snf-astakos-app / astakos / im / templates / im / account_base.html
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 </div>
26 {% endblock %}