-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
68 lines (61 loc) · 2.61 KB
/
template.html
File metadata and controls
68 lines (61 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8"/>
<title>Calculus Grades</title>
<link rel="stylesheet" href="./report.css"/>
</head>
<body>
<div class="container">
<h2> {{ Name }} </h2>
<h3> Summary grade for the {{ midterm_or_final }} </h3>
{{ extra_text }}
<table class="grades">
<tr>
<td> <b>Points:</b> </td>
<td style="text-align: center"> {{ score }} </td>
</tr>
<tr>
<td><b> Number of Grades below P: </b></td>
<td style="text-align: center"> {{ number_of_ns }} </td>
</tr>
<tr>
<td><b> WebAssign Grade </b></td>
<td style="text-align: center"> {{ webassign_grade }} </td>
</tr>
<tr>
<td><b> {{ midterm_or_final }} marks above N </b></td>
<td style="text-align: center"> {{ exam_marks }} </td>
</tr>
<tr>
<td><b> Letter Grade </b></td>
<td style="text-align: center"> {{ letter_grade }} </td>
</tr>
</table>
<br/><br/>
<h3>
Here's the raw Data from Blackboard
</h3>
{{ raw_data }}
<br/><br/>
<h3>
How was this computed?
</h3>
<p>
This is the grade based on the mastery grading system. The symbol 'PM' is worth 2 point, the letter 'P' is worth 1 points, and the letter 'N' is worth 0 points. If you see a 'Z' that means that there was no work for that standard.
</p>
<p>
The calculation of the letter grade is determined by thresholds outlined in the syllabus and below. Additionally, the +/- is determined by proximity to the next letter grade. Note that this document gives only the letter grade. +/- is assigned on MyWSU.
</p>
<h3>The grade threshold for the {{midterm_or_final}}</h3>
{{ grade_threshold }}
<br/><br/>
<h3>How was it computed? As in the code?</h3>
<p class="message">I've generated this report via python pandas, acting off the raw dataset from Blackboard's gradebook. You can check <a href="https://github.com/jmhammond/mastery_grading">my code on GitHub</a>.
</p>
<p>
<div> <small>Run on {{ date }}</small> </div>
</p>
</div>
</body>
</html>