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
1bfef829
Commit
1bfef829
authored
Oct 24, 2018
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改terminal表单获取storage, 删除无用代码
parent
cc0cf8ed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
20 deletions
+2
-20
forms.py
apps/common/forms.py
+0
-12
forms.py
apps/terminal/forms.py
+2
-8
No files found.
apps/common/forms.py
View file @
1bfef829
...
...
@@ -147,18 +147,6 @@ class TerminalSettingForm(BaseForm):
TERMINAL_ASSET_LIST_SORT_BY
=
forms
.
ChoiceField
(
choices
=
SORT_BY_CHOICES
,
initial
=
'hostname'
,
label
=
_
(
"List sort by"
)
)
# TERMINAL_COMMAND_STORAGE = FormEncryptDictField(
# label=_("Command storage"), help_text=_(
# "Set terminal storage setting, `default` is the using as default,"
# "You can set other storage and some terminal using"
# )
# )
# TERMINAL_REPLAY_STORAGE = FormEncryptDictField(
# label=_("Replay storage"), help_text=_(
# "Set replay storage setting, `default` is the using as default,"
# "You can set other storage and some terminal using"
# )
# )
class
TerminalCommandStorage
(
BaseForm
):
...
...
apps/terminal/forms.py
View file @
1bfef829
...
...
@@ -10,21 +10,15 @@ from .models import Terminal
def
get_all_command_storage
():
from
common
import
utils
command_storage
=
utils
.
get_command_storage_or_create_default_storage
()
command_storage_choice
=
[]
for
k
,
v
in
command_storage
.
items
():
command_storage_choice
.
append
((
k
,
k
))
return
command_storage_choice
yield
(
k
,
k
)
def
get_all_replay_storage
():
from
common
import
utils
replay_storage
=
utils
.
get_replay_storage_or_create_default_storage
()
replay_storage_choice
=
[]
for
k
,
v
in
replay_storage
.
items
():
replay_storage_choice
.
append
((
k
,
k
))
return
replay_storage_choice
yield
(
k
,
k
)
class
TerminalForm
(
forms
.
ModelForm
):
...
...
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