mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-22 00:09:14 +00:00
version 2.0.0 beta
This commit is contained in:
47
templates/nav_li_profile.html
Normal file
47
templates/nav_li_profile.html
Normal file
@@ -0,0 +1,47 @@
|
||||
{% 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>
|
||||
|
Reference in New Issue
Block a user