From f8a4a0e1084de2a9fa26db6017dc3c1bac6e1e4d Mon Sep 17 00:00:00 2001 From: fit2bot <68588906+fit2bot@users.noreply.github.com> Date: Fri, 10 Nov 2023 17:59:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DUserOtpDisableView=20?= =?UTF-8?q?=E8=A7=86=E5=9B=BE=E5=87=BD=E6=95=B0=E8=8E=B7=E5=8F=96=E6=A8=A1?= =?UTF-8?q?=E7=89=88=E9=94=99=E8=AF=AF=20(#12084)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: feng <1304903146@qq.com> --- apps/users/views/profile/otp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/users/views/profile/otp.py b/apps/users/views/profile/otp.py index f79ee4d4a..a42a7a513 100644 --- a/apps/users/views/profile/otp.py +++ b/apps/users/views/profile/otp.py @@ -132,7 +132,7 @@ class UserOtpEnableBindView(AuthMixin, TemplateView, FormView): class UserOtpDisableView(PermissionsMixin, FormView): - template_name = 'users/asset_account_change_info.html' + template_name = 'users/user_verify_mfa.html' form_class = forms.UserCheckOtpCodeForm permission_classes = [IsValidUser]