root / astakos / im / templates / im / account_base.html @ 527d3f56
History | View | Annotate | Download (1.1 kB)
1 |
{% extends "im/base_two_cols.html" %} |
---|---|
2 |
|
3 |
{% block page.title %}Profile{% endblock %} |
4 |
{% block page.nav.classes %}{% endblock %} |
5 |
|
6 |
{% block page.quicknav.items %} |
7 |
<li class="{% block signup_class %}{% endblock %}"> |
8 |
<a href="{% url astakos.im.views.logout %}">LOGOUT</a> |
9 |
</li>
|
10 |
{% endblock %} |
11 |
|
12 |
{% block page.nav.items %} |
13 |
<li class="{% if tab == "im/profile" %}active{% endif %}"> |
14 |
<a href="{% url astakos.im.views.edit_profile %}">Profile</a> |
15 |
</li>
|
16 |
<li class="{% if not tab %}active{% endif %}"> |
17 |
<a href="{% url django.contrib.auth.views.password_change %}">Change password</a> |
18 |
</li>
|
19 |
<li class="{% if tab == "im/invitations" %}active{% endif %}"> |
20 |
<a href="{% url astakos.im.views.invite %}">Invitations</a> |
21 |
</li>
|
22 |
<li class="{% if tab == "im/feedback" %}active{% endif %}"> |
23 |
<a href="{% url astakos.im.views.send_feedback %}">Send feedback</a> |
24 |
</li>
|
25 |
{% endblock %} |
26 |
|
27 |
{% block page.body %} |
28 |
<div class="maincol {% block innerpage.class %}full{% endblock %}"> |
29 |
{% block body %}{% endblock %} |
30 |
</div>
|
31 |
{% endblock %} |