blob: 6041d00639f76e04c69fb163106c576ee164d8c0 (
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="{% url scipycon_account %}">My profile</a> |
{% if user.is_superuser %}
<a href="/admin/">Administer</a> |
{% endif %}
<a href="{% url scipycon_logout %}">Logout</a>
{% else %}
<a href="{% url scipycon_login %}">Login</a>
{% endif %}
</div>
|