From a08dd5ee722dfe2e0249833066ff731c4ce1344c Mon Sep 17 00:00:00 2001 From: feng626 <1304903146@qq.com> Date: Tue, 24 May 2022 11:03:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=87=AA=E5=B7=B1=E5=AF=86=E7=A0=81=20url=20?= =?UTF-8?q?=E4=B8=8D=E5=87=86=E7=A1=AE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/users/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/users/notifications.py b/apps/users/notifications.py index 99aeb77b7..645e206cd 100644 --- a/apps/users/notifications.py +++ b/apps/users/notifications.py @@ -143,7 +143,7 @@ class PasswordExpirationReminderMsg(UserMessage): subject = _('Password is about expire') date_password_expired_local = timezone.localtime(user.date_password_expired) - update_password_url = urljoin(settings.SITE_URL, '/ui/#/users/profile/?activeTab=PasswordUpdate') + update_password_url = urljoin(settings.SITE_URL, '/ui/#/profile/setting/?activeTab=PasswordUpdate') date_password_expired = date_password_expired_local.strftime('%Y-%m-%d %H:%M:%S') context = { 'name': user.name,