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
e6dd07a4
Commit
e6dd07a4
authored
Jan 22, 2013
by
Vik Paruchuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix parameter passing
parent
b0599ea1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
lms/djangoapps/open_ended_grading/views.py
+3
-1
No files found.
lms/djangoapps/open_ended_grading/views.py
View file @
e6dd07a4
...
...
@@ -17,6 +17,7 @@ from controller_query_service import ControllerQueryService
from
grading_service
import
GradingServiceError
import
json
from
.staff_grading
import
StaffGrading
from
student.models
import
unique_id_for_user
log
=
logging
.
getLogger
(
__name__
)
...
...
@@ -119,11 +120,12 @@ def peer_grading_problem(request, course_id):
'staff_access'
:
False
,
})
@cache_control
(
no_cache
=
True
,
no_store
=
True
,
must_revalidate
=
True
)
def
student_problem_list
(
request
,
course_id
,
student_id
):
def
student_problem_list
(
request
,
course_id
):
'''
Show a student problem list
'''
course
=
get_course_with_access
(
request
.
user
,
course_id
,
'load'
)
student_id
=
unique_id_for_user
(
request
.
user
)
# call problem list service
success
=
False
...
...
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