mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
{% load static %}
|
|
{% load i18n %}
|
|
<li class="nav-header">
|
|
<div class="dropdown profile-element">
|
|
<span>
|
|
<img alt="image" class="img-circle" width="48" height="48" src="{{ user.avatar_url }}"/>
|
|
</span>
|
|
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
|
|
<span class="clear">
|
|
<span class="block m-t-xs">
|
|
<strong class="font-bold"> {{ user.name }}<span style="color: #8095a8"></span></strong>
|
|
</span>
|
|
<span class="text-muted text-xs block">
|
|
{{ user.get_role_display | default:_('User') }}<b class="caret"></b>
|
|
</span>
|
|
</span>
|
|
</a>
|
|
<ul class="dropdown-menu animated fadeInRight m-t-xs">
|
|
<li><a href="{% url 'users:user-profile' %}">{% trans 'Profile' %}</a></li>
|
|
<li><a href="{% url 'users:user-profile-update' %}">{% trans 'Profile settings' %}</a></li>
|
|
<li class="divider"></li>
|
|
{% if request.user.is_superuser %}
|
|
{% if request.COOKIES.IN_ADMIN_PAGE == 'No' %}
|
|
<li><a id="switch_admin">{% trans 'Admin page' %}</a></li>
|
|
{% else %}
|
|
<li><a id="switch_user">{% trans 'User page' %}</a></li>
|
|
{% endif %}
|
|
{% endif %}
|
|
<li><a href="{% url 'users:logout' %}">{% trans 'Logout' %}</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="logo-element">
|
|
JMS
|
|
</div>
|
|
</li>
|
|
<script>
|
|
$(document).ready(function () {
|
|
})
|
|
.on('click', '#switch_admin', function () {
|
|
setCookie("IN_ADMIN_PAGE", "Yes");
|
|
window.location = "/"
|
|
})
|
|
.on('click', '#switch_user', function () {
|
|
setCookie("IN_ADMIN_PAGE", "No");
|
|
window.location = "/"
|
|
})
|
|
</script>
|