Gabriel Santiago Plaza пре 3 година
родитељ
комит
441c5107e9

+ 15
- 3
app/views/local/managers/pCoords/annual_report.blade.php Прегледај датотеку

@@ -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
             

+ 2
- 0
app/views/local/professors/new_assessment_report.blade.php Прегледај датотеку

@@ -7,6 +7,8 @@
7 7
         @include('local.managers.sCoords._navigation')
8 8
     @elseif(Auth::user()->role==3)
9 9
         @include('local.managers.pCoords._navigation')
10
+    @else
11
+    @include('local.professors._navigation')
10 12
 
11 13
     @endif
12 14
 @stop