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

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

83
                 'style':'text-align: center'
83
                 'style':'text-align: center'
84
             }).html('Course: '+course_code.replace('_',' '));
84
             }).html('Course: '+course_code.replace('_',' '));
85
 
85
 
86
-            criteriaAssessed = $("<h5/>",{
86
+            criteriaAssessed = $("<h4/>",{
87
                 'style':'display: inline'
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
             $('#levelTabs').append(li);
102
             $('#levelTabs').append(li);
91
             $("#allLists").append(div);
103
             $("#allLists").append(div);
94
             $.each(course_data, function(index, reports){
106
             $.each(course_data, function(index, reports){
95
 
107
 
96
                 $.each(reports.criteriaReport, function(index2, criterion){
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
         @include('local.managers.sCoords._navigation')
7
         @include('local.managers.sCoords._navigation')
8
     @elseif(Auth::user()->role==3)
8
     @elseif(Auth::user()->role==3)
9
         @include('local.managers.pCoords._navigation')
9
         @include('local.managers.pCoords._navigation')
10
+    @else
11
+    @include('local.professors._navigation')
10
 
12
 
11
     @endif
13
     @endif
12
 @stop
14
 @stop