Commit 272ea0d5 authored by BaiJiangJie's avatar BaiJiangJie

[Update] 认证页面:修改登录页面展示时的License判断逻辑

parent 344f3802
...@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment