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
4ab204cc
Commit
4ab204cc
authored
Sep 05, 2013
by
Diana Huang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only create a new photo verification if one doesn't already exist.
parent
70cdc9a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
lms/djangoapps/verify_student/views.py
+4
-3
No files found.
lms/djangoapps/verify_student/views.py
View file @
4ab204cc
...
@@ -101,9 +101,10 @@ def create_order(request):
...
@@ -101,9 +101,10 @@ def create_order(request):
"""
"""
Submit PhotoVerification and create a new Order for this verified cert
Submit PhotoVerification and create a new Order for this verified cert
"""
"""
attempt
=
SoftwareSecurePhotoVerification
(
user
=
request
.
user
)
if
not
SoftwareSecurePhotoVerification
.
user_has_valid_or_pending
(
request
.
user
):
attempt
.
status
=
"ready"
attempt
=
SoftwareSecurePhotoVerification
(
user
=
request
.
user
)
attempt
.
save
()
attempt
.
status
=
"ready"
attempt
.
save
()
course_id
=
request
.
POST
[
'course_id'
]
course_id
=
request
.
POST
[
'course_id'
]
donation_for_course
=
request
.
session
.
get
(
'donation_for_course'
,
{})
donation_for_course
=
request
.
session
.
get
(
'donation_for_course'
,
{})
...
...
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