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
9d7b8208
Commit
9d7b8208
authored
Nov 19, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改common settings
parent
dda367a9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
forms.py
apps/common/forms.py
+6
-6
terminal_setting.html
apps/common/templates/common/terminal_setting.html
+2
-2
settings.py
apps/jumpserver/settings.py
+1
-1
No files found.
apps/common/forms.py
View file @
9d7b8208
...
@@ -14,16 +14,16 @@ class BaseForm(forms.Form):
...
@@ -14,16 +14,16 @@ class BaseForm(forms.Form):
def
__init__
(
self
,
*
args
,
**
kwargs
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
()
.
__init__
(
*
args
,
**
kwargs
)
super
()
.
__init__
(
*
args
,
**
kwargs
)
for
name
,
field
in
self
.
fields
.
items
():
for
name
,
field
in
self
.
fields
.
items
():
db_
value
=
getattr
(
common_settings
,
name
)
value
=
getattr
(
common_settings
,
name
)
# django_value = getattr(settings, name) if hasattr(settings, name) else None
# django_value = getattr(settings, name) if hasattr(settings, name) else None
if
db_value
is
None
:
# and django_value is None:
if
value
is
None
:
# and django_value is None:
continue
continue
if
db_
value
is
not
None
:
if
value
is
not
None
:
if
isinstance
(
db_
value
,
dict
):
if
isinstance
(
value
,
dict
):
db_value
=
json
.
dumps
(
db_
value
)
value
=
json
.
dumps
(
value
)
initial_value
=
db_
value
initial_value
=
value
# elif django_value is False or django_value:
# elif django_value is False or django_value:
# initial_value = django_value
# initial_value = django_value
else
:
else
:
...
...
apps/common/templates/common/terminal_setting.html
View file @
9d7b8208
...
@@ -92,7 +92,7 @@
...
@@ -92,7 +92,7 @@
{% endfor %}
{% endfor %}
</tbody>
</tbody>
</table>
</table>
<a
href=
"{% url 'common:command-storage-create' %}"
class=
"btn btn-primary"
>
{% trans 'Add' %}
</a>
<a
href=
"{% url 'common:command-storage-create' %}"
class=
"btn btn-primary
btn-xs
"
>
{% trans 'Add' %}
</a>
<div
class=
"hr-line-dashed"
></div>
<div
class=
"hr-line-dashed"
></div>
<h3>
{% trans "Replay storage" %}
</h3>
<h3>
{% trans "Replay storage" %}
</h3>
...
@@ -114,7 +114,7 @@
...
@@ -114,7 +114,7 @@
{% endfor %}
{% endfor %}
</tbody>
</tbody>
</table>
</table>
<a
href=
"{% url 'common:replay-storage-create' %}"
class=
"btn btn-primary"
>
{% trans 'Add' %}
</a>
<a
href=
"{% url 'common:replay-storage-create' %}"
class=
"btn btn-primary
btn-xs
"
>
{% trans 'Add' %}
</a>
<div
class=
"hr-line-dashed"
></div>
<div
class=
"hr-line-dashed"
></div>
</form>
</form>
...
...
apps/jumpserver/settings.py
View file @
9d7b8208
...
@@ -323,7 +323,7 @@ EMAIL_HOST_USER = CONFIG.EMAIL_HOST_USER
...
@@ -323,7 +323,7 @@ EMAIL_HOST_USER = CONFIG.EMAIL_HOST_USER
EMAIL_HOST_PASSWORD
=
CONFIG
.
EMAIL_HOST_PASSWORD
EMAIL_HOST_PASSWORD
=
CONFIG
.
EMAIL_HOST_PASSWORD
EMAIL_USE_SSL
=
CONFIG
.
EMAIL_USE_SSL
EMAIL_USE_SSL
=
CONFIG
.
EMAIL_USE_SSL
EMAIL_USE_TLS
=
CONFIG
.
EMAIL_USE_TLS
EMAIL_USE_TLS
=
CONFIG
.
EMAIL_USE_TLS
EMAIL_SUBJECT_PREFIX
=
CONFIG
.
EMAIL_SUBJECT_PREFIX
or
''
EMAIL_SUBJECT_PREFIX
=
CONFIG
.
EMAIL_SUBJECT_PREFIX
REST_FRAMEWORK
=
{
REST_FRAMEWORK
=
{
# Use Django's standard `django.contrib.auth` permissions,
# Use Django's standard `django.contrib.auth` permissions,
...
...
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