@@ -26,12 +26,26 @@ It can contain the following:
26
26
* `` "instructor_notes" `` : Shows notes for early warnings, plagiarism, etc. only to the instructor
27
27
* `` "grade_summary" `` : Shows the overall score and score for each syllabus bucket (e.g. Homework)
28
28
* `` "grade_details" `` : Shows the score for each gradeable
29
+ * `` "section" `` : Show the students' registration section.
30
+ * `` "messages" `` : Show a text message at the top of the page.
29
31
* `` "final_grade" `` : Shows final grade letters and some statistics about the final grade distribution.
32
+ * `` "manual_grade" `` : Manually assign final grades to specific students.
30
33
* `` "exam_seating" `` : Shows exam seating assignments. To display the assignment on the Submitty course homepage,
31
34
the instructor should make sure "Display Rainbow Grades Custom Message" is enabled in "Course Settings" on the Submitty
32
35
course page.
33
36
* `` "display_rank_to_individual" `` : Shows each student's rank in the course, independent of section.
34
37
38
+ ``` json
39
+ "display" : [
40
+ " grade_summary" ,
41
+ " grade_details" ,
42
+ " section" ,
43
+ " messages" ,
44
+ " final_grade" ,
45
+ " manual_grade"
46
+ ]
47
+ ```
48
+
35
49
* ** field:** `` "display_benchmark" ``
36
50
** type:** _ array of strings_
37
51
** REQUIRED** if using `` "curve" `` in `` "gradeables" `` described below
@@ -103,6 +117,12 @@ It can contain the following:
103
117
These messages will be displayed at the top of the instructor summary and each
104
118
student's individual Rainbow Grades report.
105
119
120
+ ``` json
121
+ "messages" : [
122
+ " Example message"
123
+ ]
124
+ ```
125
+
106
126
* ** field:** `` "final_cutoff" ``
107
127
** type:** _ associative array / mapping from string to float_
108
128
** REQUIRED** if using `` "final_grade" `` in `` "display" ``
0 commit comments