Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
15d1aa3a
Commit
15d1aa3a
authored
9 years ago
by
Sarina Canelake
Browse files
Options
Downloads
Plain Diff
Merge pull request #10257 from edx/sarina/update-profile-wording
Create distinct terms for gender, education sign up terms
parents
970efb04
105d611c
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/djangoapps/student/models.py
+3
-3
3 additions, 3 deletions
common/djangoapps/student/models.py
openedx/core/djangoapps/user_api/tests/test_views.py
+6
-6
6 additions, 6 deletions
openedx/core/djangoapps/user_api/tests/test_views.py
with
9 additions
and
9 deletions
common/djangoapps/student/models.py
+
3
−
3
View file @
15d1aa3a
...
...
@@ -241,7 +241,7 @@ class UserProfile(models.Model):
(
'
m
'
,
ugettext_noop
(
'
Male
'
)),
(
'
f
'
,
ugettext_noop
(
'
Female
'
)),
# Translators: 'Other' refers to the student's gender
(
'
o
'
,
ugettext_noop
(
'
Other
'
))
(
'
o
'
,
ugettext_noop
(
'
Other
/Prefer Not to Say
'
))
)
gender
=
models
.
CharField
(
blank
=
True
,
null
=
True
,
max_length
=
6
,
db_index
=
True
,
choices
=
GENDER_CHOICES
...
...
@@ -260,9 +260,9 @@ class UserProfile(models.Model):
(
'
jhs
'
,
ugettext_noop
(
"
Junior secondary/junior high/middle school
"
)),
(
'
el
'
,
ugettext_noop
(
"
Elementary/primary school
"
)),
# Translators: 'None' refers to the student's level of education
(
'
none
'
,
ugettext_noop
(
"
Non
e
"
)),
(
'
none
'
,
ugettext_noop
(
"
No
Formal Educatio
n
"
)),
# Translators: 'Other' refers to the student's level of education
(
'
other
'
,
ugettext_noop
(
"
Other
"
))
(
'
other
'
,
ugettext_noop
(
"
Other
Education
"
))
)
level_of_education
=
models
.
CharField
(
blank
=
True
,
null
=
True
,
max_length
=
6
,
db_index
=
True
,
...
...
This diff is collapsed.
Click to expand it.
openedx/core/djangoapps/user_api/tests/test_views.py
+
6
−
6
View file @
15d1aa3a
...
...
@@ -1020,8 +1020,8 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
{
"
value
"
:
"
hs
"
,
"
name
"
:
"
Secondary/high school
"
},
{
"
value
"
:
"
jhs
"
,
"
name
"
:
"
Junior secondary/junior high/middle school
"
},
{
"
value
"
:
"
el
"
,
"
name
"
:
"
Elementary/primary school
"
},
{
"
value
"
:
"
none
"
,
"
name
"
:
"
Non
e
"
},
{
"
value
"
:
"
other
"
,
"
name
"
:
"
Other
"
},
{
"
value
"
:
"
none
"
,
"
name
"
:
"
No
Formal Educatio
n
"
},
{
"
value
"
:
"
other
"
,
"
name
"
:
"
Other
Education
"
},
],
}
)
...
...
@@ -1046,8 +1046,8 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
{
"
value
"
:
"
hs
"
,
"
name
"
:
"
Secondary/high school TRANSLATED
"
},
{
"
value
"
:
"
jhs
"
,
"
name
"
:
"
Junior secondary/junior high/middle school TRANSLATED
"
},
{
"
value
"
:
"
el
"
,
"
name
"
:
"
Elementary/primary school TRANSLATED
"
},
{
"
value
"
:
"
none
"
,
"
name
"
:
"
Non
e
TRANSLATED
"
},
{
"
value
"
:
"
other
"
,
"
name
"
:
"
Other TRANSLATED
"
},
{
"
value
"
:
"
none
"
,
"
name
"
:
"
No
Formal Educatio
n TRANSLATED
"
},
{
"
value
"
:
"
other
"
,
"
name
"
:
"
Other
Education
TRANSLATED
"
},
],
}
)
...
...
@@ -1064,7 +1064,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
{
"
value
"
:
""
,
"
name
"
:
"
--
"
,
"
default
"
:
True
},
{
"
value
"
:
"
m
"
,
"
name
"
:
"
Male
"
},
{
"
value
"
:
"
f
"
,
"
name
"
:
"
Female
"
},
{
"
value
"
:
"
o
"
,
"
name
"
:
"
Other
"
},
{
"
value
"
:
"
o
"
,
"
name
"
:
"
Other
/Prefer Not to Say
"
},
],
}
)
...
...
@@ -1084,7 +1084,7 @@ class RegistrationViewTest(ThirdPartyAuthTestMixin, ApiTestCase):
{
"
value
"
:
""
,
"
name
"
:
"
--
"
,
"
default
"
:
True
},
{
"
value
"
:
"
m
"
,
"
name
"
:
"
Male TRANSLATED
"
},
{
"
value
"
:
"
f
"
,
"
name
"
:
"
Female TRANSLATED
"
},
{
"
value
"
:
"
o
"
,
"
name
"
:
"
Other TRANSLATED
"
},
{
"
value
"
:
"
o
"
,
"
name
"
:
"
Other
/Prefer Not to Say
TRANSLATED
"
},
],
}
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment