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
8aa033f6
Commit
8aa033f6
authored
Jan 15, 2013
by
Vik Paruchuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add peer and staff grading required display, notifications
parent
ef2b0694
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
lms/static/coffee/src/staff_grading/staff_grading.coffee
+1
-1
lms/templates/peer_grading/peer_grading.html
+1
-1
No files found.
lms/static/coffee/src/staff_grading/staff_grading.coffee
View file @
8aa033f6
...
@@ -318,7 +318,7 @@ class StaffGrading
...
@@ -318,7 +318,7 @@ class StaffGrading
problem_link
:
(
problem
)
->
problem_link
:
(
problem
)
->
link
=
$
(
'<a>'
).
attr
(
'href'
,
"javascript:void(0)"
).
append
(
link
=
$
(
'<a>'
).
attr
(
'href'
,
"javascript:void(0)"
).
append
(
"
#{
problem
.
problem_name
}
(
#{
problem
.
num_graded
}
graded,
#{
problem
.
num_pending
}
pending)"
)
"
#{
problem
.
problem_name
}
(
#{
problem
.
num_graded
}
graded,
#{
problem
.
num_pending
}
pending
, required to grade
#{
problem
.
num_required
}
more
)"
)
.
click
=>
.
click
=>
@
get_next_submission
problem
.
location
@
get_next_submission
problem
.
location
...
...
lms/templates/peer_grading/peer_grading.html
View file @
8aa033f6
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
<ul
class=
"problem-list"
>
<ul
class=
"problem-list"
>
%for problem in problem_list:
%for problem in problem_list:
<li>
<li>
<a
href=
"${ajax_url}problem?location=${problem['location']}"
>
${problem['problem_name']} (${problem['num_graded']} graded, ${problem['num_pending']} pending)
</a>
<a
href=
"${ajax_url}problem?location=${problem['location']}"
>
${problem['problem_name']} (${problem['num_graded']} graded, ${problem['num_pending']} pending
, required to grade ${problem['num_required']} more
)
</a>
</li>
</li>
%endfor
%endfor
</ul>
</ul>
...
...
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