blob: 2b562d82ca1493ac7bef135f78007d0681df3772 (
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 }} <{{ user.username }}></strong>
{% else %}
<strong>{{ user.username }}</strong>
{% endif %} |
<a href="/{{params.scope }}/account/">My profile</a> |
{% if user.is_superuser %}
<a href="/admin/">Administer</a> |
{% endif %}
<a href="/{{params.scope }}/logout/">Logout</a>
{% else %}
<a href="/{{params.scope }}/login/">Login</a>
{% endif %}
</div>
|