Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
cc425116
Commit
cc425116
authored
Jan 22, 2015
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改页面展示
parent
98061f9d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
186 additions
and
74 deletions
+186
-74
views.py
juser/views.py
+16
-3
base.html
templates/base.html
+1
-1
user_list.html
templates/juser/user_list.html
+88
-70
user_list2.html
templates/juser/user_list2.html
+81
-0
No files found.
juser/views.py
View file @
cc425116
...
...
@@ -19,7 +19,7 @@ from juser.models import UserGroup, User
from
connect
import
PyCrypt
,
KEY
from
connect
import
BASE_DIR
from
connect
import
CONF
from
django.core.paginator
import
Paginator
,
EmptyPage
,
InvalidPage
CRYPTOR
=
PyCrypt
(
KEY
)
LDAP_ENABLE
=
CONF
.
getint
(
'ldap'
,
'ldap_enable'
)
...
...
@@ -107,6 +107,7 @@ class LDAPMgmt():
except
ldap
.
LDAPError
,
e
:
print
e
def
gen_sha512
(
salt
,
password
):
return
crypt
.
crypt
(
password
,
'$6$
%
s$'
%
salt
)
...
...
@@ -153,13 +154,25 @@ def group_list(request):
def
user_list
(
request
):
user_role
=
{
'SU'
:
u'超级管理员'
,
'GA'
:
u'组管理员'
,
'CU'
:
u'普通用户'
}
header_title
,
path1
,
path2
=
'查看用户 | Add User'
,
'juser'
,
'user_list'
users
=
User
.
objects
.
all
()
return
render_to_response
(
'juser/user_list.html'
,
locals
())
users
=
contact_list
=
User
.
objects
.
all
()
p
=
paginator
=
Paginator
(
contact_list
,
5
)
try
:
page
=
int
(
request
.
GET
.
get
(
'page'
,
'1'
))
except
ValueError
:
page
=
1
try
:
contacts
=
paginator
.
page
(
page
)
except
(
EmptyPage
,
InvalidPage
):
contacts
=
paginator
.
page
(
paginator
.
num_pages
)
return
render_to_response
(
'juser/user_list2.html'
,
locals
())
def
db_add_user
(
**
kwargs
):
groups_post
=
kwargs
.
pop
(
'groups'
)
user
=
User
(
**
kwargs
)
group_select
=
[]
for
group_id
in
groups_post
:
group
=
UserGroup
.
objects
.
filter
(
id
=
group_id
)
group_select
.
extend
(
group
)
...
...
templates/base.html
View file @
cc425116
...
...
@@ -14,7 +14,7 @@
</head>
<body
class=
"skin-1"
>
<body>
<div
id=
"wrapper"
>
{% include 'nav.html' %}
...
...
templates/juser/user_list.html
View file @
cc425116
{% extends 'base.html' %}
{% load mytags %}
{% block content %}
{% include 'nav_cat_bar.html' %}
<div
class=
"wrapper wrapper-content animated fadeInRight"
>
<div
class=
"row
"
>
<div
class=
"col-lg-10
"
>
<div
class=
"ibox float-e-margins
"
>
<div
class=
"ibox-title
"
>
<h5>
用户信息
<small>
show user info.
</small></h5
>
<div
class=
"ibox-tools"
>
<a
class=
"collapse-link
"
>
<i
class=
"fa fa-chevron-up"
></i
>
<
/a
>
<a
class=
"dropdown-toggle"
data-toggle=
"dropdown"
href=
"#"
>
<i
class=
"fa fa-wrench"
></i
>
<
/a
>
<ul
class=
"dropdown-menu dropdown-user"
>
<li><a
href=
"#"
>
未启用 1
</a
>
</li
>
<li><a
href=
"#"
>
未启用 2
</a
>
</li
>
</
ul
>
<a
class=
"close-link"
>
<i
class=
"fa fa-times"
></i
>
<
/a
>
</
div
>
{% include 'nav_cat_bar.html' %}
<div
class=
"wrapper wrapper-content animated fadeInRight
"
>
<div
class=
"row
"
>
<div
class=
"col-lg-10
"
>
<div
class=
"ibox float-e-margins
"
>
<div
class=
"ibox-title"
>
<h5>
查看用户
<small>
show user info.
</small>
</h5
>
<div
class=
"ibox-tools
"
>
<a
class=
"collapse-link"
>
<
i
class=
"fa fa-chevron-up"
></i
>
</a
>
<a
class=
"dropdown-toggle"
data-toggle=
"dropdown"
href=
"#"
>
<
i
class=
"fa fa-wrench"
></i
>
</a
>
<ul
class=
"dropdown-menu dropdown-user"
>
<li><a
href=
"#"
>
未启用 1
</a
>
</li
>
<li><a
href=
"#"
>
未启用 2
</a
>
</
li
>
</ul
>
<a
class=
"close-link"
>
<
i
class=
"fa fa-times"
></i
>
</
a
>
</div>
<div
class=
"ibox-content"
style=
"display: block;"
>
<form
method=
"post"
action=
""
>
<table
class=
"table table-hover"
>
<thead>
<tr>
<th>
<div
class=
"checkbox i-checks"
>
<input
onclick=
"selectAll()"
type=
"checkbox"
name=
"select_all"
style=
"select_all"
id=
"select_all"
>
</div>
</th>
<th>
ID
</th>
<th>
用户名
</th>
<th>
姓名
</th>
<th>
属组
</th>
<th>
角色
</th>
<th>
Email
</th>
<th>
激活
</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>
<div
class=
"checkbox i-checks"
>
<input
type=
"checkbox"
value=
"{{ user.id }}"
name=
"selected"
>
</div>
</td>
<td>
{{ user.id }}
</td>
<td>
{{ user.username }}
</td>
<td>
{{ user.name }}
</td>
<td>
{{ user.username|groups_str }}
</td>
<td>
{{ user.id|get_role }}
</td>
<td>
{{ user.email }}
</td>
<td>
{{ user.is_active }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
<div
class=
"form-group"
>
<div
class=
"col-sm-4 col-sm-offset-2"
>
<button
class=
"btn btn-white"
type=
"submit"
>
取消
</button>
<button
id=
"submit_button"
class=
"btn btn-primary"
type=
"submit"
>
确认删除
</button>
</div>
</div>
</form>
</div>
<div
class=
"ibox-content"
>
<div
class=
""
>
<a
target=
"_blank"
href=
"/juser/user_add/"
class=
"btn btn-sm btn-primary "
>
添加
</a>
</div>
<table
class=
"table table-striped table-bordered table-hover "
id=
"editable"
>
<thead>
<tr>
<th
class=
"text-center"
>
ID
</th>
<th
class=
"text-center"
>
用户名
</th>
<th
class=
"text-center"
>
姓名
</th>
<th
class=
"text-center"
>
属组
</th>
<th
class=
"text-center"
>
角色
</th>
<th
class=
"text-center"
>
Email
</th>
<th
class=
"text-center"
>
激活
</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr
class=
"gradeX"
>
<td
class=
"text-center"
><input
type=
"checkbox"
class=
"i-checks"
name=
""
></td>
<td
class=
"text-center"
>
{{ user.id }}
</td>
<td
class=
"text-center"
>
{{ user.username }}
</td>
<td
class=
"text-center"
>
{{ user.name }}
</td>
<td
class=
"text-center"
>
{{ user.username|groups_str }}
</td>
<td
class=
"text-center"
>
{{ user.id|get_role }}
</td>
<td
class=
"text-center"
>
{{ user.email }}
</td>
<td
class=
"text-center"
>
{{ user.is_active }}
</td>
<td
class=
"text-center"
>
<a
href=
"/juser/{{ user.username }}/"
class=
"iframe btn btn-xs btn-primary"
>
详情
</a>
<a
href=
"/juser/user_edit/{{ user.username }}"
class=
"btn btn-xs btn-info"
>
编辑
</a>
<a
href=
"/juser/user_del/{{ user.username }}"
class=
"btn btn-xs btn-danger"
>
删除
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<ul
class=
"pagination"
>
{% if contacts.has_previous %}
<li><a
href=
"?page={{ contacts.previous_page_number }}"
>
«
</a></li>
{% endif %}
{% for page in p.page_range %}
{% ifequal offset1 page %}
<li
class=
"active"
><a
href=
"?page={{ page }}"
title=
"第{{ page }}页"
>
{{ page }}
</a></li>
{% else %}
<li><a
href=
"?page={{ page }}"
title=
"第{{ page }}页"
>
{{ page }}
</a></li>
{% endifequal %}
{% endfor %}
{% if contacts.has_next %}
<li><a
href=
"?page={{ contacts.next_page_number }}"
>
»
</a></li>
{% endif %}
</ul>
</div>
</div>
</div>
</div>
</div>
<script>
$
(
document
).
ready
(
function
(){
$
(
".iframe"
).
colorbox
({
iframe
:
true
,
width
:
"70%"
,
height
:
"70%"
});
});
</script>
{% endblock %}
\ No newline at end of file
templates/juser/user_list2.html
0 → 100644
View file @
cc425116
{% extends 'base.html' %}
{% load mytags %}
{% block content %}
{% include 'nav_cat_bar.html' %}
<div
class=
"wrapper wrapper-content animated fadeInRight"
>
<div
class=
"row"
>
<div
class=
"col-lg-10"
>
<div
class=
"ibox float-e-margins"
>
<div
class=
"ibox-title"
>
<h5>
用户信息
<small>
show user info.
</small></h5>
<div
class=
"ibox-tools"
>
<a
class=
"collapse-link"
>
<i
class=
"fa fa-chevron-up"
></i>
</a>
<a
class=
"dropdown-toggle"
data-toggle=
"dropdown"
href=
"#"
>
<i
class=
"fa fa-wrench"
></i>
</a>
<ul
class=
"dropdown-menu dropdown-user"
>
<li><a
href=
"#"
>
未启用 1
</a>
</li>
<li><a
href=
"#"
>
未启用 2
</a>
</li>
</ul>
<a
class=
"close-link"
>
<i
class=
"fa fa-times"
></i>
</a>
</div>
</div>
<div
class=
"ibox-content"
style=
"display: block;"
>
<form
method=
"post"
action=
""
>
<table
class=
"table table-hover"
>
<thead>
<tr>
<th>
<div
class=
"checkbox i-checks"
>
<input
onclick=
"selectAll()"
type=
"checkbox"
name=
"select_all"
style=
"select_all"
id=
"select_all"
>
</div>
</th>
<th>
ID
</th>
<th>
用户名
</th>
<th>
姓名
</th>
<th>
属组
</th>
<th>
角色
</th>
<th>
Email
</th>
<th>
激活
</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>
<div
class=
"checkbox i-checks"
>
<input
type=
"checkbox"
value=
"{{ user.id }}"
name=
"selected"
>
</div>
</td>
<td>
{{ user.id }}
</td>
<td>
{{ user.username }}
</td>
<td>
{{ user.name }}
</td>
<td>
{{ user.username|groups_str }}
</td>
<td>
{{ user.id|get_role }}
</td>
<td>
{{ user.email }}
</td>
<td>
{{ user.is_active }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
<div
class=
"form-group"
>
<div
class=
"col-sm-4 col-sm-offset-2"
>
<button
class=
"btn btn-white"
type=
"submit"
>
取消
</button>
<button
id=
"submit_button"
class=
"btn btn-primary"
type=
"submit"
>
确认删除
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment