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
d0126959
Commit
d0126959
authored
Mar 31, 2015
by
zubair-arbi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change education level option label to read "Associate" degree
ECOM-579
parent
01bdfb12
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
common/djangoapps/student/models.py
+1
-1
openedx/core/djangoapps/user_api/accounts/views.py
+1
-1
openedx/core/djangoapps/user_api/tests/test_views.py
+1
-1
No files found.
common/djangoapps/student/models.py
View file @
d0126959
...
...
@@ -231,7 +231,7 @@ class UserProfile(models.Model):
(
'p'
,
ugettext_noop
(
'Doctorate'
)),
(
'm'
,
ugettext_noop
(
"Master's or professional degree"
)),
(
'b'
,
ugettext_noop
(
"Bachelor's degree"
)),
(
'a'
,
ugettext_noop
(
"Associate
's
degree"
)),
(
'a'
,
ugettext_noop
(
"Associate degree"
)),
(
'hs'
,
ugettext_noop
(
"Secondary/high school"
)),
(
'jhs'
,
ugettext_noop
(
"Junior secondary/junior high/middle school"
)),
(
'el'
,
ugettext_noop
(
"Elementary/primary school"
)),
...
...
openedx/core/djangoapps/user_api/accounts/views.py
View file @
d0126959
...
...
@@ -52,7 +52,7 @@ class AccountView(APIView):
* "p" signifying "Doctorate"
* "m" signifying "Master's or professional degree"
* "b" signifying "Bachelor's degree"
* "a" signifying "Associate
's
degree"
* "a" signifying "Associate degree"
* "hs" signifying "Secondary/high school"
* "jhs" signifying "Junior secondary/junior high/middle school"
* "el" signifying "Elementary/primary school"
...
...
openedx/core/djangoapps/user_api/tests/test_views.py
View file @
d0126959
...
...
@@ -976,7 +976,7 @@ class RegistrationViewTest(ApiTestCase):
{
"value"
:
"p"
,
"name"
:
"Doctorate"
},
{
"value"
:
"m"
,
"name"
:
"Master's or professional degree"
},
{
"value"
:
"b"
,
"name"
:
"Bachelor's degree"
},
{
"value"
:
"a"
,
"name"
:
"Associate
's
degree"
},
{
"value"
:
"a"
,
"name"
:
"Associate degree"
},
{
"value"
:
"hs"
,
"name"
:
"Secondary/high school"
},
{
"value"
:
"jhs"
,
"name"
:
"Junior secondary/junior high/middle school"
},
{
"value"
:
"el"
,
"name"
:
"Elementary/primary school"
},
...
...
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