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
fde3d19a
Commit
fde3d19a
authored
Jan 07, 2015
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加分组template
parent
bafbacc1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
69 additions
and
1 deletion
+69
-1
views.py
juser/views.py
+10
-1
group_add.html
templates/juser/group_add.html
+59
-0
user_add.html
templates/juser/user_add.html
+0
-0
No files found.
juser/views.py
View file @
fde3d19a
...
...
@@ -3,7 +3,16 @@
from
django.shortcuts
import
render_to_response
def
group_add
(
request
):
return
render_to_response
(
'juser/group_add.html'
,
{
'header_title'
:
u'添加属组 | Add Group'
,
'path1'
:
'juser'
,
'path2'
:
'group_add'
})
def
user_add
(
request
):
return
render_to_response
(
'user_add.html'
,
{
'header_title'
:
u'添加用户 | Add User'
,
'path1'
:
'juser'
,
'path2'
:
'user_add'
})
return
render_to_response
(
'juser/user_add.html'
,
{
'header_title'
:
u'添加用户 | Add User'
,
'path1'
:
'juser'
,
'path2'
:
'user_add'
})
templates/juser/group_add.html
0 → 100644
View file @
fde3d19a
{% 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>
Fill group 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"
>
<form
method=
"post"
class=
"form-horizontal"
action=
""
>
<div
class=
"form-group"
>
<label
for=
"j_group_name"
class=
"col-sm-2 control-label"
>
组名
<span
class=
"red-fonts"
>
*
</span></label>
<div
class=
"col-sm-8"
>
<input
id=
"j_group_name"
name=
"j_group_name"
placeholder=
"Group name"
type=
"text"
class=
"form-control"
>
</div>
</div>
<div
class=
"hr-line-dashed"
></div>
<div
class=
"form-group"
>
<label
for=
"j_comment"
class=
"col-sm-2 control-label"
>
备注
</label>
<div
class=
"col-sm-8"
>
<input
id=
"j_comment"
name=
"j_comment"
placeholder=
"Comment"
type=
"password"
class=
"form-control"
>
</div>
</div>
<div
class=
"hr-line-dashed"
></div>
<div
class=
"form-group"
>
<div
class=
"col-sm-4 col-sm-offset-2"
>
<button
class=
"btn btn-white"
type=
"submit"
>
取消
</button>
<button
class=
"btn btn-primary"
type=
"submit"
>
确认保存
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
\ No newline at end of file
templates/user_add.html
→
templates/
juser/
user_add.html
View file @
fde3d19a
File moved
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