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
272ea0d5
Commit
272ea0d5
authored
Aug 06, 2019
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 认证页面:修改登录页面展示时的License判断逻辑
parent
344f3802
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
+6
-10
login.py
apps/authentication/views/login.py
+6
-10
No files found.
apps/authentication/views/login.py
View file @
272ea0d5
...
@@ -16,7 +16,7 @@ from django.views.generic.base import TemplateView
...
@@ -16,7 +16,7 @@ from django.views.generic.base import TemplateView
from
django.views.generic.edit
import
FormView
from
django.views.generic.edit
import
FormView
from
django.conf
import
settings
from
django.conf
import
settings
from
common.utils
import
get_request_ip
from
common.utils
import
get_request_ip
,
get_validity_of_license
from
users.models
import
User
from
users.models
import
User
from
audits.models
import
UserLoginLog
as
LoginLog
from
audits.models
import
UserLoginLog
as
LoginLog
from
users.utils
import
(
from
users.utils
import
(
...
@@ -43,15 +43,11 @@ class UserLoginView(FormView):
...
@@ -43,15 +43,11 @@ class UserLoginView(FormView):
key_prefix_captcha
=
"_LOGIN_INVALID_{}"
key_prefix_captcha
=
"_LOGIN_INVALID_{}"
def
get_template_names
(
self
):
def
get_template_names
(
self
):
template_name
=
'authentication/login.html'
license_valid
=
get_validity_of_license
()
if
not
settings
.
XPACK_ENABLED
:
if
license_valid
:
return
template_name
template_name
=
'authentication/new_login.html'
else
:
from
xpack.plugins.license.models
import
License
template_name
=
'authentication/login.html'
if
not
License
.
has_valid_license
():
return
template_name
template_name
=
'authentication/new_login.html'
return
template_name
return
template_name
def
get
(
self
,
request
,
*
args
,
**
kwargs
):
def
get
(
self
,
request
,
*
args
,
**
kwargs
):
...
...
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