staff_grading.html 2.65 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<%inherit file="/main.html" />
<%block name="bodyclass">${course.css_class}</%block>
<%namespace name='static' file='/static_content.html'/>

<%block name="headextra">
  <%static:css group='course'/>
</%block>

<%block name="title"><title>${course.number} Staff Grading</title></%block>

<%include file="/courseware/course_navigation.html" args="active_page='staff_grading'" />

<%block name="js_extra">
14
  <%static:js group='staff_grading'/>
15 16 17
</%block>

<section class="container">
18 19 20

<div class="staff-grading" data-ajax_url="${ajax_url}">
<h1>Staff grading</h1>
21 22
<div class="breadcrumbs">
</div>
23 24 25 26
<div class="error-container">
</div>
<div class="message-container">
</div>
27 28

<! -- Problem List View -->
29
<section class="problem-list-container">
30 31
<h2>Instructions</h2>
<div class="instructions">
32
<p>This is the list of problems that current need to be graded in order to train the machine learning models. Each problem needs to be trained separately, and we have indicated the number of student submissions that need to be graded in order for a model to be generated. You can grade more than the minimum required number of submissions--this will improve the accuracy of machine learning, though with diminishing returns. You can see the current accuracy of machine learning while grading.</p>
33 34 35
</div>

<h2>Problem List</h2>
36 37
    <table class="problem-list">
    </table>
38
</section>
39

40 41
<!-- Grading View -->

42
<section class="prompt-wrapper">
43 44 45 46 47 48
    <h2 class="prompt-name"></h2>
    <div class="meta-info-wrapper">
        <div class="problem-meta-info-container">
        </div>
        <div class="ml-error-info-container">
        </div>
49
    </div>
50
    <div class="prompt-information-container">
51
    <h3>Prompt <a href="#" class="question-header">(Hide)</a> </h3>
52 53 54
        <div class="prompt-container">
        </div>
    </div>
55

56 57
</section>

58 59 60
<div class="action-button">
    <input type=button value="Submit" class="action-button" name="show" />
</div>
61

62 63 64
<section class="grading-wrapper">

<div class="grading-container">
65
<div class="submission-wrapper">
66
<h3>Student Response</h3>
67 68 69
<div class="submission-container">
</div>
</div>
70
<div class="evaluation">
71
  <p class="score-selection-container">
72
  </p>
Vik Paruchuri committed
73 74
  <p class="grade-selection-container">
  </p>
75
  <h3>Written Feedback</h3>
76 77
  <textarea name="feedback" placeholder="Feedback for student (optional)"
            class="feedback-area" cols="70" ></textarea>
78
<p>
79
   Flag as inappropriate content for later review <input class="flag-checkbox" type="checkbox" />
80
</p>
81 82 83 84 85
</div>
  

<div class="submission">
<input type="button" value="Submit" class="submit-button" name="show"/>
86
<input type="button" value="Skip" class="skip-button" name="skip"/>
87 88 89 90
</div>

</div>

91
</div>
92
</section>