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
9384fcc0
Commit
9384fcc0
authored
Feb 11, 2014
by
Jason Bau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cme registration fix (city|country) => (city|country)_cme
parent
8e1ed573
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
common/djangoapps/cme_registration/views.py
+2
-2
No files found.
common/djangoapps/cme_registration/views.py
View file @
9384fcc0
...
...
@@ -258,11 +258,11 @@ def _do_cme_create_account(post_vars):
cme_user_profile
.
stanford_department
=
post_vars
.
get
(
'stanford_department'
)
cme_user_profile
.
address_1
=
post_vars
.
get
(
'address_1'
)
cme_user_profile
.
address_2
=
post_vars
.
get
(
'address_2'
)
cme_user_profile
.
city
=
post_vars
.
get
(
'city'
)
cme_user_profile
.
city
_cme
=
post_vars
.
get
(
'city'
)
cme_user_profile
.
state
=
post_vars
.
get
(
'state'
)
cme_user_profile
.
county_province
=
post_vars
.
get
(
'county_province'
)
cme_user_profile
.
postal_code
=
post_vars
.
get
(
'postal_code'
)
cme_user_profile
.
country
=
post_vars
.
get
(
'country'
)
cme_user_profile
.
country
_cme
=
post_vars
.
get
(
'country'
)
try
:
cme_user_profile
.
save
()
...
...
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