blob: 444c62d04444e560f7a7a75643440d67b85ebf70 (
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 kiwipycon_account %}">My profile</a> |
{% if user.is_superuser %}
<a href="/admin/">Administer</a> |
{% endif %}
<a href="{% url kiwipycon_logout %}">Logout</a>
{% else %}
<a href="{% url kiwipycon_login %}">Login</a>
{% endif %}
</div>
|