Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
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
edx
edx-platform
Commits
dffdd139
Commit
dffdd139
authored
Nov 25, 2015
by
Ahsan Ulhaq
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Help text update for full name
ECOM-2993
parent
5043b465
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
openedx/core/djangoapps/user_api/tests/test_views.py
+2
-2
openedx/core/djangoapps/user_api/views.py
+1
-1
No files found.
openedx/core/djangoapps/user_api/tests/test_views.py
View file @
dffdd139
...
...
@@ -892,7 +892,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
u"required"
:
True
,
u"label"
:
u"Full name"
,
u"placeholder"
:
u"Jane Doe"
,
u"instructions"
:
u"
Needed for any certificates you may earn
"
,
u"instructions"
:
u"
Your legal name, used for any certificates you earn.
"
,
u"restrictions"
:
{
"max_length"
:
255
},
...
...
@@ -978,7 +978,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
u"required"
:
True
,
u"label"
:
u"Full name"
,
u"placeholder"
:
u"Jane Doe"
,
u"instructions"
:
u"
Needed for any certificates you may earn
"
,
u"instructions"
:
u"
Your legal name, used for any certificates you earn.
"
,
u"restrictions"
:
{
"max_length"
:
NAME_MAX_LENGTH
,
}
...
...
openedx/core/djangoapps/user_api/views.py
View file @
dffdd139
...
...
@@ -360,7 +360,7 @@ class RegistrationView(APIView):
# Translators: These instructions appear on the registration form, immediately
# below a field meant to hold the user's full name.
name_instructions
=
_
(
u"
Needed for any certificates you may earn
"
)
name_instructions
=
_
(
u"
Your legal name, used for any certificates you earn.
"
)
form_desc
.
add_field
(
"name"
,
...
...
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