Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
a7dfb40a
Commit
a7dfb40a
authored
Feb 21, 2014
by
David Ormsbee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Working end to end assessment part saving action.
parent
fbc2d492
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
13 deletions
+16
-13
apps/openassessment/peer/api.py
+2
-2
apps/openassessment/xblock/peer_assessment_mixin.py
+13
-10
apps/openassessment/xblock/self_assessment_mixin.py
+1
-1
No files found.
apps/openassessment/peer/api.py
View file @
a7dfb40a
...
...
@@ -132,8 +132,8 @@ def create_assessment(
"rubric"
:
rubric
.
id
,
"scorer_id"
:
scorer_id
,
"submission"
:
submission
.
pk
,
"points_earned"
:
sum
(
assessment_dict
[
"points_earned"
]),
"points_possible"
:
assessment_dict
[
"points_possible"
],
#
"points_earned": sum(assessment_dict["points_earned"]),
#
"points_possible": assessment_dict["points_possible"],
"score_type"
:
PEER_TYPE
,
"parts"
:
[{
"option"
:
option_id
}
for
option_id
in
option_ids
]
}
...
...
apps/openassessment/xblock/peer_assessment_mixin.py
View file @
a7dfb40a
...
...
@@ -16,8 +16,8 @@ class PeerAssessmentMixin(AssessmentMixin):
'criteria'
:
self
.
rubric_criteria
}
assessment_dict
=
{
"points_earned"
:
map
(
int
,
data
[
"points_earned"
]),
"points_possible"
:
sum
(
c
[
'total_value'
]
for
c
in
self
.
rubric_criteria
),
#
"points_earned": map(int, data["points_earned"]),
#
"points_possible": sum(c['total_value'] for c in self.rubric_criteria),
"feedback"
:
"Not yet implemented."
,
"options_selected"
:
data
[
"options_selected"
],
}
...
...
@@ -28,24 +28,27 @@ class PeerAssessmentMixin(AssessmentMixin):
int
(
assessment_ui_model
.
must_be_graded_by
),
assessment_dict
,
rubric_dict
,
}
)
# Temp kludge until we fix JSON serialization for datetime
assessment
[
"scored_at"
]
=
str
(
assessment
[
"scored_at"
])
return
assessment_ui_model
,
"Success"
return
{}
@XBlock.handler
def
render_peer_assessment
(
self
,
data
,
suffix
=
''
):
with
self
.
get_assessment_module
(
'peer-assessment'
)
as
assessment
:
context_dict
=
{
"peer_submission"
:
self
.
get_peer_submission
(
self
.
get_student_item_dict
(),
assessment
)}
assessment
=
self
.
get_assessment_module
(
'peer-assessment'
)
# TODO: Throw some error if not assessment
context_dict
=
{
"peer_submission"
:
self
.
get_peer_submission
(
self
.
get_student_item_dict
(),
assessment
)}
return
super
(
PeerAssessmentMixin
,
self
)
.
render
(
'static/html/oa_peer_assessment.html'
,
context_dict
)
context_dict
)
def
get_peer_submission
(
self
,
student_item_dict
,
assessment
):
peer_submission
=
False
...
...
apps/openassessment/xblock/self_assessment_mixin.py
View file @
a7dfb40a
...
...
@@ -6,5 +6,5 @@ class SelfAssessmentMixin(AssessmentMixin):
@XBlock.handler
def
render_self_assessment
(
self
,
data
,
suffix
=
''
):
return
s
elf
.
render
(
'static/html/oa_self_assessment.html'
)
return
s
uper
(
SelfAssessmentMixin
,
self
)
.
render
(
'static/html/oa_self_assessment.html'
)
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