summaryrefslogtreecommitdiff
path: root/project/templates/_menu_user.html
blob: ec5df0c718e057411ee7791ef3661717f69ba340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div id="menu-user">
    {% if user.is_authenticated %}
        {% if user.get_full_name %}
        <strong>{{ user.get_full_name }} &lt;{{ user.username }}&gt;</strong>
        {% else %}
            <strong>{{ user.username }}</strong>
        {% endif %} |

        <a href="{% url scipycon_account params.scope %}">My profile</a> |

        {% if user.is_superuser %}
                <a href="/admin/">Administer</a> |
        {% endif %}

        <a href="{% url scipycon_logout params.scope %}">Logout</a>
    {% else %}
        <a href="{% url scipycon_login params.scope %}">Login</a>
    {% endif %}
</div>