{{ HTML::style('css/gradecriteria/paievaluation.css') }}
Materia: {{ $subject_name }}
Estudiante: {{ $student->last_name_std . ' ' . $student->first_name_std }}
Curso: {{ $course->name_set . ' ' . $course->name_lvl . ' ' . $course->name_clg }}
{{ Form::hidden('save-pai', action('GradeCriteriaController@postPaievaluationYear', array()), array('id'=>'save-pai')) }}
{{ Form::hidden('serial_prd', "", array('id' => 'serial_prd')) }}
{{ Form::hidden('serial_std', $student->serial_std, array('id' => 'serial_std')) }}
{{ Form::hidden('serial_sbj', $subject_id, array('id' => 'serial_sbj')) }}
{{ Form::hidden('subject_type', $subject_type, array('id' => 'subject_type')) }}
{{ Form::hidden('serial_crs', $course->serial_crs, array('id' => 'serial_crs')) }}
{{ Form::hidden('serialA', $periodgrades->serialA, array('id' => 'serialA')) }}
{{ Form::hidden('serialB', $periodgrades->serialB, array('id' => 'serialB')) }}
{{ Form::hidden('serialC', $periodgrades->serialC, array('id' => 'serialC')) }}
{{ Form::hidden('serialD', $periodgrades->serialD, array('id' => 'serialD')) }}
{{ Form::hidden('maxA', $periodgrades->maxA, array('id' => 'maxA')) }}
{{ Form::hidden('maxB', $periodgrades->maxB, array('id' => 'maxB')) }}
{{ Form::hidden('maxC', $periodgrades->maxC, array('id' => 'maxC')) }}
{{ Form::hidden('maxD', $periodgrades->maxD, array('id' => 'maxD')) }}
{{ Form::hidden('scale', $scale, array('id' => 'scale')) }}
{{ Form::hidden('project', $subject_project, array('id' => 'project')) }}
@foreach ($subperiods as $sbp)
@if (strpos($sbp->options_sbp,'SHOW_IN_QUALIFY_PAI')!== false)
@if (!empty($sbp->acttypes))
{{ $sbp->name_sbp }}
|
Tipo de actividad |
Actividad |
A |
B |
C |
D |
@foreach ($sbp->acttypes as $att)
@if (!empty($att->activities))
@foreach ($att->activities as $act)
{{ $att->name_att }} |
{{ $act->name_act }} |
{{ $act->gradeA }} |
{{ $act->gradeB }} |
{{ $act->gradeC }} |
{{ $act->gradeD }} |
@endforeach
@endif
@endforeach
@endif
@endif
@endforeach
{{ Form::open(array('id' => 'gradesPaiForm')) }}
NOTA ANUAL |
A |
B |
C |
D |
{{ Form::text('gradeA', $periodgrades->gradeA, array('class' => 'form-control input-sm gr', 'id' => 'gradeA'))}} |
{{ Form::text('gradeB', $periodgrades->gradeB, array('class' => 'form-control input-sm gr', 'id' => 'gradeB')) }} |
{{ Form::text('gradeC', $periodgrades->gradeC, array('class' => 'form-control input-sm gr', 'id' => 'gradeC')) }} |
{{ Form::text('gradeD', $periodgrades->gradeD, array('class' => 'form-control input-sm gr', 'id' => 'gradeD')) }} |
Total: |
|
Calificación Final: |
|
Escala de Calificaciones
@foreach ($scale as $item)
{{ $item->equivalence }} |
@endforeach
@foreach ($scale as $item)
{{ "[" . floor($item->min_range) . " - " . floor($item->max_range) . "]" }} |
@endforeach
@if ($subject_project && isset($subject_properties->theme) && $subject_properties->theme)
Tema
{{ Form::text('theme', $periodgrades->theme, array('class' => 'form-control', 'id' => 'theme')) }}
@endif
@if ($subject_project && isset($subject_properties->oral_grade) && $subject_properties->oral_grade)
Nota Exposición Oral
{{ Form::text('oral_grade', $periodgrades->oral_grade, array('class' => 'form-control', 'id' => 'oral_grade')) }}
@endif
@if (!$subject_project || ($subject_project && isset($subject_properties->comment) && $subject_properties->comment))
Comentario del Docente
{{ Form::textarea('commentPai', $periodgrades->comment, array('class' => 'form-control', 'size' => '30x3', 'id' => 'commentPai')) }}
@endif
{{ Form::close() }}
{{ HTML::script('js/gradecriteria/paievaluation.js') }}
{{ HTML::style('css/common/feature-table.css') }}
{{ HTML::script('js/common/feature-table.js') }}