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.6 KiB
48 lines
1.6 KiB
10 years ago
|
{% load mytags %}
|
||
|
<li class="nav-header">
|
||
|
<div class="dropdown profile-element">
|
||
|
<span>
|
||
|
<img alt="image" class="img-circle" width="48" height="48" src="/static/img/{{ session_role_id | to_avatar }}.png" />
|
||
|
</span>
|
||
|
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
|
||
|
<span class="clear">
|
||
|
<span class="block m-t-xs">
|
||
|
<strong class="font-bold">{{ session_user_id | to_name}} <span style="color: #8095a8">{{ session_user_id | to_dept_name}}</span></strong>
|
||
|
</span>
|
||
|
<span class="text-muted text-xs block">
|
||
|
{{ session_role_id | to_role_name }} <b class="caret"></b>
|
||
|
</span>
|
||
|
</span>
|
||
|
</a>
|
||
|
<ul class="dropdown-menu animated fadeInRight m-t-xs">
|
||
|
<li><a value="/juser/profile/?id={{ session_user_id }}" class="iframe_user">个人信息</a></li>
|
||
|
<li><a href="/juser/chg_info/">修改信息</a></li>
|
||
|
<li><a href="/juser/chg_role/">切换角色</a></li>
|
||
|
|
||
|
<li class="divider"></li>
|
||
|
<li><a href="/logout/">注销</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
<div class="logo-element">
|
||
|
JS+
|
||
|
</div>
|
||
|
</li>
|
||
|
<script>
|
||
|
$(".iframe_user").on('click', function(){
|
||
|
var url= $(this).attr("value");
|
||
|
$.layer({
|
||
|
type: 2,
|
||
|
title: '个人信息',
|
||
|
maxmin: true,
|
||
|
shift: 'top',
|
||
|
border: [2, 0.3, '#1AB394'],
|
||
|
shade: [0.5, '#000000'],
|
||
|
shadeClose: true,
|
||
|
area : ['800px' , '600px'],
|
||
|
iframe: {src: url}
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
|