diff options
Diffstat (limited to 'ishtar_common/templates/navbar.html')
-rw-r--r-- | ishtar_common/templates/navbar.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/ishtar_common/templates/navbar.html b/ishtar_common/templates/navbar.html index a5c135a59..0ea06bff8 100644 --- a/ishtar_common/templates/navbar.html +++ b/ishtar_common/templates/navbar.html @@ -22,14 +22,20 @@ {% if user.is_authenticated %} <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" data-toggle="dropdown" - href="#" role="button" aria-haspopup="true" aria-expanded="false">{{ user.username }}</a> + href="#" role="button" aria-haspopup="true" + aria-expanded="false"> + {{ user.username }} / {{user.ishtaruser.current_profile_name}} + </a> <div class="dropdown-menu dropdown-menu-right"> - <a class="dropdown-item" href="{% url 'auth_logout' %}"> - {% trans "Log out" %} + <a class="dropdown-item" href="{% url 'profile' %}"> + {% trans "Profile" %} </a> <a class="dropdown-item" href="{% url 'auth_password_change' %}"> {% trans "Change password" %} </a> + <a class="dropdown-item" href="{% url 'auth_logout' %}"> + {% trans "Log out" %} + </a> </div> </li> {% else %} |