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
c5785e17
Unverified
Commit
c5785e17
authored
Dec 06, 2019
by
BaiJiangJie
Committed by
GitHub
Dec 06, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dev node (#3511)
* [Update] 添加节点详情Modal * [Update] 更新翻译
parent
f89c6124
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
95 additions
and
0 deletions
+95
-0
_node_detail_modal.html
apps/assets/templates/assets/_node_detail_modal.html
+68
-0
asset_list.html
apps/assets/templates/assets/asset_list.html
+27
-0
django.mo
apps/locale/zh/LC_MESSAGES/django.mo
+0
-0
django.po
apps/locale/zh/LC_MESSAGES/django.po
+0
-0
No files found.
apps/assets/templates/assets/_node_detail_modal.html
0 → 100644
View file @
c5785e17
{% extends '_modal.html' %}
{% load i18n %}
{% load static %}
<style>
.modal-body
{
background-color
:
white
!important
;
}
</style>
{% block modal_id %}node_detail_modal{% endblock %}
{% block modal_title %}{% trans "Node detail" %}{% endblock %}
{% block modal_body %}
<form
class=
"form-horizontal"
action=
""
style=
"padding-top: 20px"
>
<div>
<div
class=
"form-group"
>
<label
for=
""
class=
"col-sm-2 control-label"
>
{% trans 'ID' %}
</label>
<div
class=
"col-sm-8"
>
<p
class=
"form-control-static"
id=
"id_node_detail_id_view"
></p>
</div>
<div
class=
"col-sm-2"
style=
"padding-left: 2px"
>
<a
class=
"btn btn-white btn-sm btn-node-detail-copy-id"
><i
class=
"fa fa-copy"
></i></a>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
""
class=
"col-sm-2 control-label"
>
{% trans 'Name' %}
</label>
<div
class=
"col-sm-8"
>
<p
class=
"form-control-static"
id=
"id_node_detail_name_view"
></p>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
""
class=
"col-sm-2 control-label"
>
{% trans 'Full name' %}
</label>
<div
class=
"col-sm-8"
>
<p
class=
"form-control-static"
id=
"id_node_detail_full_name_view"
></p>
</div>
</div>
<div
class=
"form-group"
>
<label
for=
""
class=
"col-sm-2 control-label"
>
{% trans 'Key' %}
</label>
<div
class=
"col-sm-8"
>
<p
class=
"form-control-static"
id=
"id_node_detail_key_view"
></p>
</div>
</div>
</div>
</form>
<script
src=
"{% static "
js
/
plugins
/
clipboard
/
clipboard
.
min
.
js
"
%}"
></script>
<script>
function
initClipboard
()
{
var
clipboard
=
new
Clipboard
(
'.btn-node-detail-copy-id'
,
{
text
:
function
(
trigger
)
{
return
$
(
"#id_node_detail_id_view"
).
html
()
}
});
clipboard
.
on
(
"success"
,
function
(
e
)
{
toastr
.
success
(
"{% trans "
Copy
success
" %}"
)
})
}
$
(
document
).
ready
(
function
()
{
initClipboard
();
})
</script>
{% endblock %}
{% block modal_button %}
<button
data-dismiss=
"modal"
class=
"btn btn-white"
type=
"button"
>
{% trans "Close" %}
</button>
{% endblock %}
apps/assets/templates/assets/asset_list.html
View file @
c5785e17
...
...
@@ -127,6 +127,7 @@
{% include 'assets/_asset_update_modal.html' %}
{% include 'assets/_asset_import_modal.html' %}
{% include 'assets/_asset_list_modal.html' %}
{% include 'assets/_node_detail_modal.html' %}
{% endblock %}
{% block custom_foot_js %}
...
...
@@ -198,6 +199,8 @@ function initTree() {
<li class="divider"></li>
<li id="show_current_asset" class="btn-show-current-asset" style="display: none;" tabindex="-1"><a><i class="fa fa-hand-o-up"></i> {% trans 'Display only current node assets' %}</a></li>
<li id="show_all_asset" class="btn-show-all-asset" style="display: none;" tabindex="-1"><a><i class="fa fa-th"></i> {% trans 'Displays all child node assets' %}</a></li>
<li class="divider"></li>
<li id="menu_node_detail" class="btn-node-detail" tabindex="-1"><a><i class="fa fa-info-circle"></i> {% trans 'Node detail' %}</a></li>
`
})
}
...
...
@@ -547,6 +550,30 @@ $(document).ready(function(){
flash_message
:
false
});
}).
on
(
'click'
,
'#menu_node_detail'
,
function
(
e
)
{
e
.
preventDefault
();
var
the_url
=
"{% url 'api-assets:node-detail' pk=DEFAULT_PK %}"
;
the_url
=
the_url
.
replace
(
"{{ DEFAULT_PK }}"
,
current_node_id
);
function
drawingNodeDetailModal
(
data
){
$
(
'#id_node_detail_id_view'
).
html
(
data
[
'id'
]);
$
(
'#id_node_detail_name_view'
).
html
(
data
[
'name'
]);
$
(
'#id_node_detail_full_name_view'
).
html
(
data
[
'full_value'
]);
$
(
'#id_node_detail_key_view'
).
html
(
data
[
'key'
]);
$
(
'#node_detail_modal'
).
modal
();
}
function
error
(
data
)
{
alert
(
data
)
}
function
success
(
data
)
{
drawingNodeDetailModal
(
data
)
}
requestApi
({
url
:
the_url
,
error
:
error
,
method
:
'GET'
,
success
:
success
,
flash_message
:
false
});
})
</script>
...
...
apps/locale/zh/LC_MESSAGES/django.mo
View file @
c5785e17
No preview for this file type
apps/locale/zh/LC_MESSAGES/django.po
View file @
c5785e17
This diff is collapsed.
Click to expand it.
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