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.
34 lines
974 B
34 lines
974 B
{% load static %}
|
|
{% load i18n %}
|
|
<li class="nav-header">
|
|
<div class="dropdown profile-element">
|
|
<div href="http://www.jumpserver.org" target="_blank">
|
|
<img alt="image" height="55" src="/static/img/logo-text.png" style="margin-left: 10px"/>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
<div class="logo-element">
|
|
<img alt="image" height="40" src="/static/img/logo.png"/>
|
|
</div>
|
|
</li>
|
|
<script>
|
|
$(document).ready(function () {
|
|
})
|
|
.on('click', '#switch_admin', function () {
|
|
var cookieName = "IN_ADMIN_PAGE";
|
|
setTimeout(function () {
|
|
delCookie(cookieName);
|
|
setCookie(cookieName, "Yes");
|
|
window.location = "/"
|
|
}, 100)
|
|
})
|
|
.on('click', '#switch_user', function () {
|
|
var cookieName = "IN_ADMIN_PAGE";
|
|
setTimeout(function () {
|
|
delCookie(cookieName);
|
|
setCookie(cookieName, "No");
|
|
window.location = "{% url 'assets:user-asset-list' %}"
|
|
}, 100);
|
|
})
|
|
</script>
|