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

b/snf-astakos-app/astakos/im/templates/im/account_base.html
1
{% extends "im/base_two_cols.html" %}
1
{% extends "im/base.html" %}
2 2

  
3 3
{% load filters %}
4 4

  
......
13 13

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

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

  
34 35
</div>
35 36

  
36 37
{% endblock %}
38
 

Also available in: Unified diff