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
9b4b9e69
Commit
9b4b9e69
authored
May 25, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 发送邮件增加用户名显示
parent
22a84d57
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
10 deletions
+17
-10
django.mo
apps/i18n/zh/LC_MESSAGES/django.mo
+0
-0
django.po
apps/i18n/zh/LC_MESSAGES/django.po
+14
-10
utils.py
apps/users/utils.py
+3
-0
No files found.
apps/i18n/zh/LC_MESSAGES/django.mo
View file @
9b4b9e69
No preview for this file type
apps/i18n/zh/LC_MESSAGES/django.po
View file @
9b4b9e69
...
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Jumpserver 0.3.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-05-
17 11:32
+0800\n"
"POT-Creation-Date: 2018-05-
25 18:11
+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: ibuler <ibuler@qq.com>\n"
"Language-Team: Jumpserver team<ibuler@qq.com>\n"
...
...
@@ -535,7 +535,7 @@ msgstr "测试系统用户可连接性: {}"
msgid "定期测试系统用户可连接性: {}"
msgstr ""
#: assets/tasks.py:40
2
#: assets/tasks.py:40
1
msgid "推送系统用户到入资产: {}"
msgstr ""
...
...
@@ -2540,7 +2540,7 @@ msgid "Can't provide security? Please contact the administrator!"
msgstr "如果不能提供MFA验证码,请联系管理员!"
#: users/templates/users/reset_password.html:45
#: users/templates/users/user_detail.html:348 users/utils.py:7
3
#: users/templates/users/user_detail.html:348 users/utils.py:7
6
msgid "Reset password"
msgstr "重置密码"
...
...
@@ -2744,13 +2744,15 @@ msgid "Create account successfully"
msgstr "创建账户成功"
#: users/utils.py:39
#, python-format
#,
fuzzy,
python-format
msgid ""
"\n"
" Hello %(name)s:\n"
" </br>\n"
" Your account has been created successfully\n"
" </br>\n"
" Username: %(username)s\n"
" </br>\n"
" <a href=\"%(rest_password_url)s?token=%(rest_password_token)s\">click "
"here to set your password</a>\n"
" </br>\n"
...
...
@@ -2770,6 +2772,8 @@ msgstr ""
" 你好 %(name)s:\n"
" </br>\n"
" 恭喜您,您的账号已经创建成功 </br>\n"
" 用户名: %(username)s\n"
" </br>\n"
" <a href=\"%(rest_password_url)s?token=%(rest_password_token)s\">请点击这"
"里设置密码</a> </br>\n"
" 这个链接有效期1小时, 超过时间您可以 <a href=\"%(forget_password_url)s?"
...
...
@@ -2784,7 +2788,7 @@ msgstr ""
" </br>\n"
" "
#: users/utils.py:7
5
#: users/utils.py:7
8
#, python-format
msgid ""
"\n"
...
...
@@ -2828,11 +2832,11 @@ msgstr ""
" </br>\n"
" "
#: users/utils.py:10
6
#: users/utils.py:10
9
msgid "SSH Key Reset"
msgstr "重置ssh密钥"
#: users/utils.py:1
08
#: users/utils.py:1
11
#, python-format
msgid ""
"\n"
...
...
@@ -2857,15 +2861,15 @@ msgstr ""
" </br>\n"
" "
#: users/utils.py:14
1
#: users/utils.py:14
4
msgid "User not exist"
msgstr "用户不存在"
#: users/utils.py:14
3
#: users/utils.py:14
6
msgid "Disabled or expired"
msgstr "禁用或失效"
#: users/utils.py:15
6
#: users/utils.py:15
9
msgid "Password or SSH public key invalid"
msgstr "密码或密钥不合法"
...
...
apps/users/utils.py
View file @
9b4b9e69
...
...
@@ -41,6 +41,8 @@ def send_user_created_mail(user):
</br>
Your account has been created successfully
</br>
Username:
%(username)
s
</br>
<a href="
%(rest_password_url)
s?token=
%(rest_password_token)
s">click here to set your password</a>
</br>
This link is valid for 1 hour. After it expires, <a href="
%(forget_password_url)
s?email=
%(email)
s">request new one</a>
...
...
@@ -54,6 +56,7 @@ def send_user_created_mail(user):
</br>
"""
)
%
{
'name'
:
user
.
name
,
'username'
:
user
.
username
,
'rest_password_url'
:
reverse
(
'users:reset-password'
,
external
=
True
),
'rest_password_token'
:
user
.
generate_reset_token
(),
'forget_password_url'
:
reverse
(
'users:forgot-password'
,
external
=
True
),
...
...
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