@extends('layout.sidebar') @section('title','Notas acumulativas') @section('content')

Notas finales acumulativas

{{ Form::hidden('sections', action('SectionController@getSectionsbyschoolyearoptions', array()), array('id'=>'sections')) }} {{ Form::hidden('levels', action('LevelController@getActiveLevels', array()), array('id'=>'levels')) }} {{ Form::hidden('studentsByLevel', action('StudentFinalAverageController@getStudentsByLevel', array()), array('id'=>'studentsByLevel')) }} {{ Form::hidden('hdnSaveLevelSectionAverage', action('StudentFinalAverageController@postSaveStudentFinalAverage', array()), array('id'=>'hdnSaveLevelSectionAverage')) }} {{ Form::hidden('hdnGenerateAverages', action('StudentFinalAverageController@getSaveFinalAverageStudentMinistry', array()), array('id'=>'hdnGenerateAverages')) }} {{ Form::hidden('isMinistrySubjectConfigured', action('StudentFinalAverageController@getCheckIfMinistrySubjectIsConfiguredByLevel', array()), array('id'=>'isMinistrySubjectConfigured')) }} {{ Form::token() }} {{--Tab general--}}
{{--Reporte acumulativo--}}
{{ Form::label('serial_scy','1. Año Lectivo:',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_scy',$schoolYears,$currentSchoolYear->serial_scy,array('class'=>'form-control','id'=>'serial_scy','type'=>'')) }}
{{ Form::label('section','2. Sección:',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_set',array(''=>'-Seleccione-'),'',array('class'=>'form-control','id'=>'serial_set','type'=>'')) }}
{{ Form::label('level','3. Nivel:',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_lvl',array(''=>'-Seleccione-'),'',array('class'=>'form-control','id'=>'serial_lvl','type'=>'')) }}
{{--Calculo de promedios--}}
{{ Form::label('serial_scy_avg','1. Año Lectivo:',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_scy_avg',$schoolYears,$currentSchoolYear->serial_scy,array('class'=>'form-control','id'=>'serial_scy_avg','type'=>'')) }}
{{ Form::label('section_avg','2. Sección:',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_set_avg',array(''=>'-Seleccione-'),'',array('class'=>'form-control','id'=>'serial_set_avg','type'=>'')) }}
{{ Form::label('level_avg','3. Nivel:',array('class'=>'col-md-4 control-label')) }}
{{ Form::select('serial_lvl_avg',array(''=>'-Seleccione-'),'',array('class'=>'form-control','id'=>'serial_lvl_avg','type'=>'')) }}

{{--success message--}}
{{--error message--}}

{{Form::close()}} {{ HTML::script('js/studentFinalAveragesReport/index.js') }} {{ HTML::style('css/common/eyelash.css') }} @stop()