@extends('layouts.print') @section('header')

@foreach (Session::get('semesters_info') as $index => $semester_info) {{ $semester_info }} @if($index+1 != count(Session::get('semesters_info'))) · @endif @endforeach

Assessment Report

School of {{{ $school->name}}}

@stop @section('main')



Programs

@foreach ($school->programs as $program) @endforeach
Name Participation
{{ $program->name }} @if(in_array($program->id, $participating_programs)) @else - @endif

Assessment Results by Learning Outcomes in Academic Programs

@foreach($outcomes as $outcome) @endforeach
Learning Outcome Programs Achieved Programs doing Assessment Success Rate
{{ $outcome->name }} {{{ $achievedProgramsPerOutcome[$outcome->id] }}} {{{ $attemptedProgramsPerOutcome[$outcome->id] }}} @if($attemptedProgramsPerOutcome[$outcome->id]!=0) {{{ round($achievedProgramsPerOutcome[$outcome->id] / $attemptedProgramsPerOutcome[$outcome->id]*100, 2) }}}% @else N/M @endif
N/M: Not Measured

Courses

@if($school_sections_count>0) @foreach($grouped_courses as $grouped_course) @endforeach
Identifier Name Program Assessed and Published
{{ $grouped_course->code.$grouped_course->number.' ('.$grouped_course->semester->code.')' }} {{{ $grouped_course->name}}} {{{ $grouped_course->program->name }}} @if($grouped_course->outcomes_attempted!=NULL) Yes @else No @endif
@else

No courses assigned.

@endif

Sections

@if($school_sections_count>0)

{{{ $assessed_sections_count }}} out of {{{ $school_sections_count }}} section(s) doing Assessment ({{{ round($assessed_sections_count/$school_sections_count*100, 2) }}}%)

@foreach($school->programs as $program) @foreach($program->courses as $course) @endforeach @endforeach
Identifier Name Program Professor Assessed Activities Assessed Results
{{ $course->code.$course->number.'-'.$course->section.' ('.$course->semester->code.')' }} {{{ $course->name}}} {{{ $course->program->name }}} {{{ $course->user->surnames }}}, {{{ $course->user->first_name }}} @if(count($course->assessedActivities)) @endif @if(count($course->publishedActivities)) @endif
@else

No sections assigned.

@endif @stop @section('included-js') @stop @section('javascript') $(function () { $('#schoolTabs a').click(function (e) { e.preventDefault() $(this).tab('show'); }); $('#graph').highcharts({ chart: { type: 'bar' }, title: { text: 'Performance by Learning Outcome Criteria in {{ $school->name }}' }, legend: { reversed: true, }, xAxis: { categories: [ @foreach($outcomes as $outcome) "{{{ $outcome->name }}}", @endforeach ], labels: { style: { fontSize:'11px' }, step:1, useHTML:true, formatter: function() { return '
'+this.value+'
'; }, } }, yAxis: { min: 0, max: 100, title: { text: 'Percentage' } }, tooltip: { enabled: false, }, plotOptions: { bar: { //grouping: false, shadow: false, borderWidth: 0, }, series: { pointPadding: 0, groupPadding: 0.075 }, }, series: [{ name: 'Expected Value', color: '#555555', dataLabels: { enabled: true, fontSize: 8, color: '#fff', align: 'right', format: '{y:.1f}%', style: { //fontWeight: 'bold' }, y:-1 }, data: [ @foreach($outcomes as $index => $outcome) @if( is_array($outcomes_attempted) && array_key_exists($outcome->id, $outcomes_attempted) && $outcomes_attempted[$outcome->id]!=0) {{{ $outcome->expected_outcome }}}, @else 0, @endif @endforeach ] }, { name: 'Obtained Value', color: '#e70033', dataLabels: { enabled: true, fontSize: 8, color: '#fff', align: 'right', format: '{y:.1f}%', style: { //fontWeight: 'bold' }, y:-1 }, data:[ @foreach($outcomes as $index => $outcome) @if( is_array($outcomes_attempted) && array_key_exists($outcome->id, $outcomes_attempted) && $outcomes_attempted[$outcome->id]!=0) {{{ ($outcomes_achieved[$outcome->id]/$outcomes_attempted[$outcome->id])*100 }}}, @else 0, @endif @endforeach ] }, ] }); // Include dummy graph for outcomes @include('global.dummy-outcomes') }); @stop