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
4f36cf7d
Commit
4f36cf7d
authored
Apr 29, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of github.com:jumpserver/jumpserver into dev
parents
49004158
3a3da944
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
32 additions
and
6 deletions
+32
-6
admin_user_assets.html
apps/assets/templates/assets/admin_user_assets.html
+1
-0
admin_user_list.html
apps/assets/templates/assets/admin_user_list.html
+1
-1
asset_list.html
apps/assets/templates/assets/asset_list.html
+1
-0
cmd_filter_list.html
apps/assets/templates/assets/cmd_filter_list.html
+1
-0
domain_list.html
apps/assets/templates/assets/domain_list.html
+1
-0
label_list.html
apps/assets/templates/assets/label_list.html
+1
-0
system_user_asset.html
apps/assets/templates/assets/system_user_asset.html
+1
-0
system_user_list.html
apps/assets/templates/assets/system_user_list.html
+1
-0
login.py
apps/authentication/views/login.py
+5
-0
const.py
apps/common/const.py
+2
-2
command_execution_create.html
apps/ops/templates/ops/command_execution_create.html
+4
-0
asset_permission_list.html
apps/perms/templates/perms/asset_permission_list.html
+1
-0
_message.html
apps/templates/_message.html
+2
-1
terminal_list.html
apps/terminal/templates/terminal/terminal_list.html
+1
-0
user_granted_asset.html
apps/users/templates/users/user_granted_asset.html
+3
-1
user_group_granted_asset.html
apps/users/templates/users/user_group_granted_asset.html
+3
-1
user_group_list.html
apps/users/templates/users/user_group_list.html
+2
-0
user_list.html
apps/users/templates/users/user_list.html
+1
-0
No files found.
apps/assets/templates/assets/admin_user_assets.html
View file @
4f36cf7d
...
@@ -98,6 +98,7 @@ function initTable() {
...
@@ -98,6 +98,7 @@ function initTable() {
order
:
[],
order
:
[],
columnDefs
:
[
columnDefs
:
[
{
targets
:
0
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
0
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a href="{% url "assets:asset-detail" pk=DEFAULT_PK %}" data-aid="'
+
rowData
.
id
+
'">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url "assets:asset-detail" pk=DEFAULT_PK %}" data-aid="'
+
rowData
.
id
+
'">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
}},
}},
...
...
apps/assets/templates/assets/admin_user_list.html
View file @
4f36cf7d
...
@@ -91,7 +91,7 @@ $(document).ready(function(){
...
@@ -91,7 +91,7 @@ $(document).ready(function(){
}}],
}}],
ajax_url
:
'{% url "api-assets:admin-user-list" %}'
,
ajax_url
:
'{% url "api-assets:admin-user-list" %}'
,
columns
:
[{
data
:
function
(){
return
""
}},
{
data
:
"name"
},
{
data
:
"username"
},
{
data
:
"assets_amount"
},
columns
:
[{
data
:
function
(){
return
""
}},
{
data
:
"name"
},
{
data
:
"username"
},
{
data
:
"assets_amount"
},
{
data
:
"reachable_amount"
},
{
data
:
"unreachable_amount"
},
{
data
:
"id"
},
{
data
:
"comment"
}]
{
data
:
"reachable_amount"
},
{
data
:
"unreachable_amount"
},
{
data
:
"id"
},
{
data
:
"comment"
}
,
{
data
:
"id"
}
]
};
};
jumpserver
.
initServerSideDataTable
(
options
)
jumpserver
.
initServerSideDataTable
(
options
)
})
})
...
...
apps/assets/templates/assets/asset_list.html
View file @
4f36cf7d
...
@@ -156,6 +156,7 @@ function initTable() {
...
@@ -156,6 +156,7 @@ function initTable() {
ele
:
$
(
'#asset_list_table'
),
ele
:
$
(
'#asset_list_table'
),
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
{
%
url
'assets:asset-detail'
pk
=
DEFAULT_PK
as
the_url
%
}
{
%
url
'assets:asset-detail'
pk
=
DEFAULT_PK
as
the_url
%
}
var
detail_btn
=
'<a href="{{ the_url }}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{{ the_url }}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
...
...
apps/assets/templates/assets/cmd_filter_list.html
View file @
4f36cf7d
...
@@ -40,6 +40,7 @@ function initTable() {
...
@@ -40,6 +40,7 @@ function initTable() {
ele
:
$
(
'#cmd_filter_list_table'
),
ele
:
$
(
'#cmd_filter_list_table'
),
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a href="{% url '
assets
:
cmd
-
filter
-
detail
' pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url '
assets
:
cmd
-
filter
-
detail
' pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
}},
}},
...
...
apps/assets/templates/assets/domain_list.html
View file @
4f36cf7d
...
@@ -41,6 +41,7 @@ function initTable() {
...
@@ -41,6 +41,7 @@ function initTable() {
ele
:
$
(
'#domain_list_table'
),
ele
:
$
(
'#domain_list_table'
),
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a href="{% url "assets:domain-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url "assets:domain-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
}},
}},
...
...
apps/assets/templates/assets/label_list.html
View file @
4f36cf7d
...
@@ -30,6 +30,7 @@ function initTable() {
...
@@ -30,6 +30,7 @@ function initTable() {
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
#
var
detail_btn
=
'<a href="{% url "assets:label-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
#
}
{
#
var
detail_btn
=
'<a href="{% url "assets:label-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
#
}
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a>'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a>'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
}},
}},
...
...
apps/assets/templates/assets/system_user_asset.html
View file @
4f36cf7d
...
@@ -144,6 +144,7 @@ function initAssetsTable() {
...
@@ -144,6 +144,7 @@ function initAssetsTable() {
order
:
[],
order
:
[],
columnDefs
:
[
columnDefs
:
[
{
targets
:
0
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
0
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a href="{% url "assets:asset-detail" pk=DEFAULT_PK %}" data-aid="'
+
rowData
.
id
+
'">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url "assets:asset-detail" pk=DEFAULT_PK %}" data-aid="'
+
rowData
.
id
+
'">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
}},
}},
...
...
apps/assets/templates/assets/system_user_list.html
View file @
4f36cf7d
...
@@ -49,6 +49,7 @@ function initTable() {
...
@@ -49,6 +49,7 @@ function initTable() {
ele
:
$
(
'#system_user_list_table'
),
ele
:
$
(
'#system_user_list_table'
),
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a href="{% url "assets:system-user-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url "assets:system-user-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
}},
}},
...
...
apps/authentication/views/login.py
View file @
4f36cf7d
...
@@ -59,6 +59,11 @@ class UserLoginView(FormView):
...
@@ -59,6 +59,11 @@ class UserLoginView(FormView):
return
redirect
(
redirect_user_first_login_or_index
(
return
redirect
(
redirect_user_first_login_or_index
(
request
,
self
.
redirect_field_name
)
request
,
self
.
redirect_field_name
)
)
)
# show jumpserver login page if request http://{JUMP-SERVER}/?admin=1
if
settings
.
AUTH_OPENID
and
not
self
.
request
.
GET
.
get
(
'admin'
,
0
):
query_string
=
request
.
GET
.
urlencode
()
login_url
=
"{}?{}"
.
format
(
settings
.
LOGIN_URL
,
query_string
)
return
redirect
(
login_url
)
request
.
session
.
set_test_cookie
()
request
.
session
.
set_test_cookie
()
return
super
()
.
get
(
request
,
*
args
,
**
kwargs
)
return
super
()
.
get
(
request
,
*
args
,
**
kwargs
)
...
...
apps/common/const.py
View file @
4f36cf7d
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
from
django.utils.translation
import
ugettext_lazy
as
_
from
django.utils.translation
import
ugettext_lazy
as
_
create_success_msg
=
_
(
"
<b>
%(name)
s</b>
was created successfully"
)
create_success_msg
=
_
(
"
%(name)
s
was created successfully"
)
update_success_msg
=
_
(
"
<b>
%(name)
s</b>
was updated successfully"
)
update_success_msg
=
_
(
"
%(name)
s
was updated successfully"
)
FILE_END_GUARD
=
">>> Content End <<<"
FILE_END_GUARD
=
">>> Content End <<<"
celery_task_pre_key
=
"CELERY_"
celery_task_pre_key
=
"CELERY_"
apps/ops/templates/ops/command_execution_create.html
View file @
4f36cf7d
...
@@ -82,6 +82,7 @@
...
@@ -82,6 +82,7 @@
<script>
<script>
var
zTree
,
show
=
0
;
var
zTree
,
show
=
0
;
var
systemUserId
=
null
;
var
systemUserId
=
null
;
var
url
=
null
;
var
treeUrl
=
"{% url 'api-perms:my-nodes-assets-as-tree' %}?cache_policy=1"
;
var
treeUrl
=
"{% url 'api-perms:my-nodes-assets-as-tree' %}?cache_policy=1"
;
function
initTree
()
{
function
initTree
()
{
...
@@ -114,6 +115,9 @@ function initTree() {
...
@@ -114,6 +115,9 @@ function initTree() {
if
(
systemUserId
)
{
if
(
systemUserId
)
{
url
=
treeUrl
+
'&system_user='
+
systemUserId
url
=
treeUrl
+
'&system_user='
+
systemUserId
}
}
else
{
url
=
treeUrl
}
$
.
get
(
url
,
function
(
data
,
status
){
$
.
get
(
url
,
function
(
data
,
status
){
$
.
fn
.
zTree
.
init
(
$
(
"#assetTree"
),
setting
,
data
);
$
.
fn
.
zTree
.
init
(
$
(
"#assetTree"
),
setting
,
data
);
...
...
apps/perms/templates/perms/asset_permission_list.html
View file @
4f36cf7d
...
@@ -146,6 +146,7 @@ function initTable() {
...
@@ -146,6 +146,7 @@ function initTable() {
$
(
td
).
html
(
"<i class='fa fa-angle-right'></i>"
);
$
(
td
).
html
(
"<i class='fa fa-angle-right'></i>"
);
}},
}},
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a href="{% url "perms:asset-permission-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url "perms:asset-permission-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
}},
}},
...
...
apps/templates/_message.html
View file @
4f36cf7d
...
@@ -47,7 +47,8 @@
...
@@ -47,7 +47,8 @@
{% if messages %}
{% if messages %}
{% for message in messages %}
{% for message in messages %}
<div
class=
"alert alert-{{ message.tags }} help-message"
>
<div
class=
"alert alert-{{ message.tags }} help-message"
>
{{ message|safe }}
{# {{ message|safe }}#}
{{ message }}
<button
aria-hidden=
"true"
data-dismiss=
"alert"
class=
"close"
type=
"button"
style=
"outline: none;"
>
×
</button>
<button
aria-hidden=
"true"
data-dismiss=
"alert"
class=
"close"
type=
"button"
style=
"outline: none;"
>
×
</button>
</div>
</div>
...
...
apps/terminal/templates/terminal/terminal_list.html
View file @
4f36cf7d
...
@@ -50,6 +50,7 @@ function initTable() {
...
@@ -50,6 +50,7 @@ function initTable() {
buttons
:
[],
buttons
:
[],
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a href="{% url "terminal:terminal-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url "terminal:terminal-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
}},
}},
...
...
apps/users/templates/users/user_granted_asset.html
View file @
4f36cf7d
...
@@ -77,6 +77,7 @@ function initTable() {
...
@@ -77,6 +77,7 @@ function initTable() {
ele
:
$
(
'#user_assets_table'
),
ele
:
$
(
'#user_assets_table'
),
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
{
%
url
'assets:asset-detail'
pk
=
DEFAULT_PK
as
the_url
%
}
{
%
url
'assets:asset-detail'
pk
=
DEFAULT_PK
as
the_url
%
}
var
detail_btn
=
'<a href="{{ the_url }}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{{ the_url }}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
...
@@ -91,7 +92,8 @@ function initTable() {
...
@@ -91,7 +92,8 @@ function initTable() {
{
targets
:
4
,
createdCell
:
function
(
td
,
cellData
)
{
{
targets
:
4
,
createdCell
:
function
(
td
,
cellData
)
{
var
users
=
[];
var
users
=
[];
$
.
each
(
cellData
,
function
(
id
,
data
)
{
$
.
each
(
cellData
,
function
(
id
,
data
)
{
users
.
push
(
data
.
name
);
var
name
=
htmlEscape
(
data
.
name
);
users
.
push
(
name
);
});
});
$
(
td
).
html
(
users
.
join
(
', '
))
$
(
td
).
html
(
users
.
join
(
', '
))
}}
}}
...
...
apps/users/templates/users/user_group_granted_asset.html
View file @
4f36cf7d
...
@@ -77,6 +77,7 @@ function initTable() {
...
@@ -77,6 +77,7 @@ function initTable() {
ele
:
$
(
'#user_assets_table'
),
ele
:
$
(
'#user_assets_table'
),
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
{
%
url
'assets:asset-detail'
pk
=
DEFAULT_PK
as
the_url
%
}
{
%
url
'assets:asset-detail'
pk
=
DEFAULT_PK
as
the_url
%
}
var
detail_btn
=
'<a href="{{ the_url }}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{{ the_url }}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
...
@@ -91,7 +92,8 @@ function initTable() {
...
@@ -91,7 +92,8 @@ function initTable() {
{
targets
:
4
,
createdCell
:
function
(
td
,
cellData
)
{
{
targets
:
4
,
createdCell
:
function
(
td
,
cellData
)
{
var
users
=
[];
var
users
=
[];
$
.
each
(
cellData
,
function
(
id
,
data
)
{
$
.
each
(
cellData
,
function
(
id
,
data
)
{
users
.
push
(
data
.
name
);
var
name
=
htmlEscape
(
data
.
name
);
users
.
push
(
name
);
});
});
$
(
td
).
html
(
users
.
join
(
', '
))
$
(
td
).
html
(
users
.
join
(
', '
))
}}
}}
...
...
apps/users/templates/users/user_group_list.html
View file @
4f36cf7d
...
@@ -28,6 +28,7 @@ $(document).ready(function() {
...
@@ -28,6 +28,7 @@ $(document).ready(function() {
buttons
:
[],
buttons
:
[],
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a href="{% url "users:user-group-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url "users:user-group-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
'{{ DEFAULT_PK }}'
,
rowData
.
id
));
}},
}},
...
@@ -36,6 +37,7 @@ $(document).ready(function() {
...
@@ -36,6 +37,7 @@ $(document).ready(function() {
$
(
td
).
html
(
html
);
$
(
td
).
html
(
html
);
}},
}},
{
targets
:
3
,
createdCell
:
function
(
td
,
cellData
)
{
{
targets
:
3
,
createdCell
:
function
(
td
,
cellData
)
{
cellData
=
htmlEscape
(
cellData
);
var
innerHtml
=
cellData
.
length
>
30
?
cellData
.
substring
(
0
,
30
)
+
'...'
:
cellData
;
var
innerHtml
=
cellData
.
length
>
30
?
cellData
.
substring
(
0
,
30
)
+
'...'
:
cellData
;
$
(
td
).
html
(
'<span href="javascript:void(0);" data-toggle="tooltip" title="'
+
cellData
+
'">'
+
innerHtml
+
'</span>'
);
$
(
td
).
html
(
'<span href="javascript:void(0);" data-toggle="tooltip" title="'
+
cellData
+
'">'
+
innerHtml
+
'</span>'
);
}},
}},
...
...
apps/users/templates/users/user_list.html
View file @
4f36cf7d
...
@@ -59,6 +59,7 @@ function initTable() {
...
@@ -59,6 +59,7 @@ function initTable() {
ele
:
$
(
'#user_list_table'
),
ele
:
$
(
'#user_list_table'
),
columnDefs
:
[
columnDefs
:
[
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
{
targets
:
1
,
createdCell
:
function
(
td
,
cellData
,
rowData
)
{
cellData
=
htmlEscape
(
cellData
);
var
detail_btn
=
'<a href="{% url "users:user-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
var
detail_btn
=
'<a href="{% url "users:user-detail" pk=DEFAULT_PK %}">'
+
cellData
+
'</a>'
;
$
(
td
).
html
(
detail_btn
.
replace
(
"{{ DEFAULT_PK }}"
,
rowData
.
id
));
$
(
td
).
html
(
detail_btn
.
replace
(
"{{ DEFAULT_PK }}"
,
rowData
.
id
));
}},
}},
...
...
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