Commit dc9f4a61 by Vik Paruchuri

Enable ability to see full results and to respond to feedback

parent 6d0af139
...@@ -15,12 +15,20 @@ ...@@ -15,12 +15,20 @@
${co['rubric_html']} ${co['rubric_html']}
</div> </div>
<div class="rubric-result"> <div class="rubric-result">
${co['feedback']} %if len(co['feedback'])>2:
<div class="collapsible evaluation-response">
<header>
<a href="#">See full feedback</a>
</header>
<section class="feedback-full">
${co['feedback']}
</section>
%endif
</div> </div>
%if grader_type!="SA": %if grader_type!="SA":
<div class="rubric-result"> <div class="rubric-result">
<input type="hidden" value="${co['grader_id']}" class="grader_id" /> <input type="hidden" value="${co['grader_id']}" class="grader_id" />
<input type="hidden" value="${co['submission_id']}" class=submission_id" /> <input type="hidden" value="${co['submission_id']}" class="submission_id" />
<div class="collapsible evaluation-response"> <div class="collapsible evaluation-response">
<header> <header>
<a href="#">Respond to Feedback</a> <a href="#">Respond to Feedback</a>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment