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
718715cc
Commit
718715cc
authored
May 15, 2018
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 创建系统用户选择rdp协议,去掉相关配置的一些无用功能
parent
38f8c5bb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
24 deletions
+45
-24
_system_user.html
apps/assets/templates/assets/_system_user.html
+31
-14
system_user_detail.html
apps/assets/templates/assets/system_user_detail.html
+10
-4
system_user_update.html
apps/assets/templates/assets/system_user_update.html
+4
-6
No files found.
apps/assets/templates/assets/_system_user.html
View file @
718715cc
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
{% bootstrap_field form.private_key_file layout="horizontal" %}
{% bootstrap_field form.private_key_file layout="horizontal" %}
</div>
</div>
<div
class=
"form-group"
>
<div
class=
"form-group"
>
<label
for=
"{{ form.a
s
_push.id_for_label }}"
class=
"col-sm-2 control-label"
>
{% trans 'Auto push' %}
</label>
<label
for=
"{{ form.a
uto
_push.id_for_label }}"
class=
"col-sm-2 control-label"
>
{% trans 'Auto push' %}
</label>
<div
class=
"col-sm-8"
>
<div
class=
"col-sm-8"
>
{{ form.auto_push}}
{{ form.auto_push}}
</div>
</div>
...
@@ -82,13 +82,11 @@
...
@@ -82,13 +82,11 @@
<script>
<script>
var
auto_generate_key
=
'#'
+
'{{ form.auto_generate_key.id_for_label }}'
;
var
auto_generate_key
=
'#'
+
'{{ form.auto_generate_key.id_for_label }}'
;
var
protocol_id
=
'#'
+
'{{ form.protocol.id_for_label }}'
;
var
protocol_id
=
'#'
+
'{{ form.protocol.id_for_label }}'
;
var
password_id
=
'#'
+
'{{ form.password.id_for_label }}'
;
var
private_key_id
=
'#'
+
'{{ form.private_key_file.id_for_label }}'
;
var
private_key_id
=
'#'
+
'{{ form.private_key_file.id_for_label }}'
;
var
auto_push_id
=
'#'
+
'{{ form.auto_push.id_for_label }}'
;
var
sudo_id
=
'#'
+
'{{ form.sudo.id_for_label }}'
;
var
sudo_id
=
'#'
+
'{{ form.sudo.id_for_label }}'
;
var
shell_id
=
'#'
+
'{{ form.shell.id_for_label }}'
;
var
shell_id
=
'#'
+
'{{ form.shell.id_for_label }}'
;
var
need_change_field
=
[
auto_generate_key
,
private_key_id
,
sudo_id
,
shell_id
]
;
function
authFieldsDisplay
()
{
function
authFieldsDisplay
()
{
if
(
$
(
auto_generate_key
).
prop
(
'checked'
))
{
if
(
$
(
auto_generate_key
).
prop
(
'checked'
))
{
$
(
'.auth-fields'
).
addClass
(
'hidden'
);
$
(
'.auth-fields'
).
addClass
(
'hidden'
);
...
@@ -98,24 +96,42 @@
...
@@ -98,24 +96,42 @@
}
}
function
protocolChange
()
{
function
protocolChange
()
{
if
(
$
(
protocol_id
).
attr
(
'value'
)
===
'rdp'
)
{
var
div_auto_generate_key
=
$
(
auto_generate_key
).
parent
().
parent
();
$
.
each
(
need_change_field
,
function
(
index
,
value
)
{
var
div_ssh_private_key
=
$
(
private_key_id
).
parent
().
parent
().
parent
().
parent
();
var
div_auto_push
=
$
(
auto_push_id
).
parent
().
parent
();
var
div_sudo
=
$
(
sudo_id
).
parent
().
parent
();
var
div_shell
=
$
(
shell_id
).
parent
().
parent
();
var
need_change_div
=
[
div_auto_generate_key
,
div_ssh_private_key
,
div_auto_push
,
div_sudo
,
div_shell
];
if
(
$
(
protocol_id
+
" option:selected"
).
text
()
===
'rdp'
)
{
$
(
'.auth-fields'
).
removeClass
(
'hidden'
);
$
.
each
(
need_change_div
,
function
(
index
,
value
)
{
$
(
value
).
addClass
(
'hidden'
)
$
(
value
).
addClass
(
'hidden'
)
});
});
$
(
password_id
).
removeClass
(
'hidden'
)
}
else
{
}
else
{
$
.
each
(
need_change_field
,
function
(
index
,
value
)
{
authFieldsDisplay
();
$
.
each
(
need_change_div
,
function
(
index
,
value
)
{
$
(
value
).
removeClass
(
'hidden'
)
$
(
value
).
removeClass
(
'hidden'
)
});
});
}
}
}
}
$
(
document
).
ready
(
function
()
{
$
(
'.select2'
).
select2
();
{
%
block
document_ready
%
}
authFieldsDisplay
();
$
(
document
).
ready
(
function
()
{
protocolChange
();
$
(
'.select2'
).
select2
();
$
(
auto_generate_key
).
change
(
function
()
{
authFieldsDisplay
();
authFieldsDisplay
();
protocolChange
();
});
});
})
{
%
endblock
%
}
$
(
protocol_id
).
change
(
function
(){
protocolChange
();
});
$
(
auto_generate_key
).
change
(
function
()
{
authFieldsDisplay
();
});
</script>
</script>
{% endblock %}
{% endblock %}
\ No newline at end of file
apps/assets/templates/assets/system_user_detail.html
View file @
718715cc
...
@@ -64,14 +64,14 @@
...
@@ -64,14 +64,14 @@
</tr>
</tr>
<tr>
<tr>
<td>
{% trans 'Protocol' %}:
</td>
<td>
{% trans 'Protocol' %}:
</td>
<td><b>
{{ system_user.protocol }}
</b></td>
<td><b
id=
"id_protocol_type"
>
{{ system_user.protocol }}
</b></td>
</tr>
</tr>
<tr>
<tr
id=
"id_sudo"
>
<td>
{% trans 'Sudo' %}:
</td>
<td>
{% trans 'Sudo' %}:
</td>
<td><b>
{{ system_user.sudo }}
</b></td>
<td><b>
{{ system_user.sudo }}
</b></td>
</tr>
</tr>
{% if system_user.shell %}
{% if system_user.shell %}
<tr>
<tr
id=
"id_shell"
>
<td>
{% trans 'Shell' %}:
</td>
<td>
{% trans 'Shell' %}:
</td>
<td><b>
{{ system_user.shell }}
</b></td>
<td><b>
{{ system_user.shell }}
</b></td>
</tr>
</tr>
...
@@ -107,7 +107,7 @@
...
@@ -107,7 +107,7 @@
</div>
</div>
<div
class=
"col-sm-4"
style=
"padding-left: 0;padding-right: 0"
>
<div
class=
"col-sm-4"
style=
"padding-left: 0;padding-right: 0"
>
<div
class=
"panel panel-primary"
>
<div
class=
"panel panel-primary"
id=
"id_quick_update"
>
<div
class=
"panel-heading"
>
<div
class=
"panel-heading"
>
<i
class=
"fa fa-info-circle"
></i>
{% trans 'Quick update' %}
<i
class=
"fa fa-info-circle"
></i>
{% trans 'Quick update' %}
</div>
</div>
...
@@ -236,6 +236,12 @@ function updateSystemUserNode(nodes) {
...
@@ -236,6 +236,12 @@ function updateSystemUserNode(nodes) {
}
}
jumpserver
.
nodes_selected
=
{};
jumpserver
.
nodes_selected
=
{};
$
(
document
).
ready
(
function
()
{
$
(
document
).
ready
(
function
()
{
if
(
$
(
'#id_protocol_type'
).
text
()
===
'rdp'
){
$
(
'#id_quick_update'
).
addClass
(
'hidden'
);
$
(
'#id_sudo'
).
addClass
(
'hidden'
);
$
(
'#id_shell'
).
addClass
(
'hidden'
);
}
$
(
'.select2'
).
select2
()
$
(
'.select2'
).
select2
()
.
on
(
'select2:select'
,
function
(
evt
)
{
.
on
(
'select2:select'
,
function
(
evt
)
{
var
data
=
evt
.
params
.
data
;
var
data
=
evt
.
params
.
data
;
...
...
apps/assets/templates/assets/system_user_update.html
View file @
718715cc
...
@@ -15,10 +15,9 @@
...
@@ -15,10 +15,9 @@
</div>
</div>
{% endblock %}
{% endblock %}
{% block custom_foot_js %}
{% block document_ready %}
<script>
$(document).ready(function () {
$(document).ready(function () {
$('.select2').select2();
$('.select2').select2();
})
protocolChange();
</script>
});
{% endblock %}
{% 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