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
d3109a03
Commit
d3109a03
authored
Jan 16, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix] 修复资产列表显示bug
parent
681ddb5a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
4 deletions
+31
-4
label.py
apps/assets/models/label.py
+27
-0
admin_user_assets.html
apps/assets/templates/assets/admin_user_assets.html
+1
-1
asset_group_detail.html
apps/assets/templates/assets/asset_group_detail.html
+1
-1
cluster_assets.html
apps/assets/templates/assets/cluster_assets.html
+1
-1
system_user_asset.html
apps/assets/templates/assets/system_user_asset.html
+1
-1
No files found.
apps/assets/models/label.py
0 → 100644
View file @
d3109a03
# -*- coding: utf-8 -*-
#
import
uuid
from
django.db
import
models
from
django.utils.translation
import
ugettext_lazy
as
_
class
Label
(
models
.
Model
):
SYSTEM_CATEGORY
=
"S"
USER_CATEGORY
=
"U"
CATEGORY_CHOICES
=
(
(
"S"
,
_
(
"System"
)),
(
"U"
,
_
(
"User"
))
)
id
=
models
.
UUIDField
(
default
=
uuid
.
uuid4
,
primary_key
=
True
)
name
=
models
.
CharField
(
max_length
=
128
,
verbose_name
=
_
(
"Name"
))
alias
=
models
.
CharField
(
max_length
=
128
,
verbose_name
=
_
(
"Alias"
),
blank
=
True
)
value
=
models
.
CharField
(
max_length
=
128
,
verbose_name
=
_
(
"Value"
))
category
=
models
.
CharField
(
max_length
=
128
,
choices
=
CATEGORY_CHOICES
,
verbose_name
=
_
(
"Category"
))
is_active
=
models
.
BooleanField
(
default
=
False
,
verbose_name
=
_
(
"Is active"
))
date_created
=
models
.
DateTimeField
(
auto_now_add
=
True
,
null
=
True
,
blank
=
True
,
verbose_name
=
_
(
'Date created'
)
)
class
Meta
:
db_table
=
"assets_label"
apps/assets/templates/assets/admin_user_assets.html
View file @
d3109a03
...
@@ -121,7 +121,7 @@ function initTable() {
...
@@ -121,7 +121,7 @@ function initTable() {
{
data
:
"type"
},
{
data
:
"is_connective"
}],
{
data
:
"type"
},
{
data
:
"is_connective"
}],
op_html
:
$
(
'#actions'
).
html
()
op_html
:
$
(
'#actions'
).
html
()
};
};
jumpserver
.
initDataTable
(
options
);
jumpserver
.
init
ServerSide
DataTable
(
options
);
}
}
$
(
document
).
ready
(
function
()
{
$
(
document
).
ready
(
function
()
{
...
...
apps/assets/templates/assets/asset_group_detail.html
View file @
d3109a03
...
@@ -184,7 +184,7 @@ function initTable() {
...
@@ -184,7 +184,7 @@ function initTable() {
{
data
:
"get_type_display"
},
{
data
:
"is_connective"
},
{
data
:
"id"
}],
{
data
:
"get_type_display"
},
{
data
:
"is_connective"
},
{
data
:
"id"
}],
op_html
:
$
(
'#actions'
).
html
()
op_html
:
$
(
'#actions'
).
html
()
};
};
jumpserver
.
initDataTable
(
options
);
jumpserver
.
init
ServerSide
DataTable
(
options
);
}
}
...
...
apps/assets/templates/assets/cluster_assets.html
View file @
d3109a03
...
@@ -176,7 +176,7 @@ function initTable() {
...
@@ -176,7 +176,7 @@ function initTable() {
{
data
:
"get_type_display"
},
{
data
:
"is_connective"
},
{
data
:
"id"
}],
{
data
:
"get_type_display"
},
{
data
:
"is_connective"
},
{
data
:
"id"
}],
op_html
:
$
(
'#actions'
).
html
()
op_html
:
$
(
'#actions'
).
html
()
};
};
jumpserver
.
initDataTable
(
options
);
jumpserver
.
init
ServerSide
DataTable
(
options
);
}
}
...
...
apps/assets/templates/assets/system_user_asset.html
View file @
d3109a03
...
@@ -121,7 +121,7 @@ function initAssetsTable() {
...
@@ -121,7 +121,7 @@ function initAssetsTable() {
columns
:
[{
data
:
"hostname"
},
{
data
:
"ip"
},
{
data
:
"port"
},
{
data
:
"hostname"
}],
columns
:
[{
data
:
"hostname"
},
{
data
:
"ip"
},
{
data
:
"port"
},
{
data
:
"hostname"
}],
op_html
:
$
(
'#actions'
).
html
()
op_html
:
$
(
'#actions'
).
html
()
};
};
jumpserver
.
initDataTable
(
options
);
jumpserver
.
init
ServerSide
DataTable
(
options
);
}
}
$
(
document
).
ready
(
function
()
{
$
(
document
).
ready
(
function
()
{
...
...
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