|
@@ -83,9 +83,21 @@
|
83
|
83
|
'style':'text-align: center'
|
84
|
84
|
}).html('Course: '+course_code.replace('_',' '));
|
85
|
85
|
|
86
|
|
- criteriaAssessed = $("<h5/>",{
|
|
86
|
+ criteriaAssessed = $("<h4/>",{
|
87
|
87
|
'style':'display: inline'
|
88
|
|
- })
|
|
88
|
+ }).html('Criteria Assessed in course')
|
|
89
|
+
|
|
90
|
+ tableCriteria = $("<table/>", {
|
|
91
|
+ 'class':'table table-striped table-condensed datatable'
|
|
92
|
+ });
|
|
93
|
+ thead = $("<thead/>").html("<tr>"+
|
|
94
|
+ "<th>Criterion</th>"+
|
|
95
|
+ "<th>Number of Students Assessed</th>"+
|
|
96
|
+ "<th>Number of Students that Achieved The Target</th>"+
|
|
97
|
+ "<th>%</th>"+
|
|
98
|
+ "<th>Outcomes</th>");
|
|
99
|
+ tbody = $("<tbody>");
|
|
100
|
+
|
89
|
101
|
|
90
|
102
|
$('#levelTabs').append(li);
|
91
|
103
|
$("#allLists").append(div);
|
|
@@ -94,7 +106,7 @@
|
94
|
106
|
$.each(course_data, function(index, reports){
|
95
|
107
|
|
96
|
108
|
$.each(reports.criteriaReport, function(index2, criterion){
|
97
|
|
-
|
|
109
|
+ criterion
|
98
|
110
|
})
|
99
|
111
|
})
|
100
|
112
|
|