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
2200783d
Commit
2200783d
authored
Jan 14, 2015
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加用户列表
parent
8a1e5376
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
77 additions
and
2 deletions
+77
-2
views.py
juser/views.py
+5
-2
user_list.html
templates/juser/user_list.html
+72
-0
No files found.
juser/views.py
View file @
2200783d
...
...
@@ -146,13 +146,15 @@ def group_add(request):
def
group_list
(
request
):
header_title
,
path1
,
path2
=
'查看属组 | Add Group'
,
'juser'
,
'group_
add
'
header_title
,
path1
,
path2
=
'查看属组 | Add Group'
,
'juser'
,
'group_
list
'
groups
=
UserGroup
.
objects
.
all
()
return
render_to_response
(
'juser/group_list.html'
,
locals
())
def
user_list
(
request
):
pass
header_title
,
path1
,
path2
=
'查看用户 | Add User'
,
'juser'
,
'user_list'
users
=
User
.
objects
.
all
()
return
render_to_response
(
'juser/user_list.html'
,
locals
())
def
db_add_user
(
**
kwargs
):
...
...
@@ -301,6 +303,7 @@ def user_add(request):
if
LDAP_ENABLE
:
ldap_add_user
(
username
,
ldap_pwd
)
msg
=
u'添加用户
%
s 成功!'
%
username
locals
=
lambda
:
{}
except
Exception
,
e
:
error
=
u'添加用户
%
s 失败
%
s '
%
(
username
,
e
)
...
...
templates/juser/user_list.html
0 → 100644
View file @
2200783d
{% extends 'base.html' %}
{% 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>
</tr>
</thead>
<tbody>
{% for group in groups %}
<tr>
<td>
<div
class=
"checkbox i-checks"
>
<input
type=
"checkbox"
value=
"{{ group.id }}"
name=
"selected"
>
</div>
</td>
<td>
{{ group.id }}
</td>
<td>
{{ group.name }}
</td>
<td>
{{ group.comment }}
</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