ok
Direktori : /home2/selectio/public_html/bharath/application/views/homework/ |
Current File : /home2/selectio/public_html/bharath/application/views/homework/homework_evaluation.php |
<div class="content-wrapper" style="min-height: 946px;"> <section class="content-header"> <h1> <i class="fa fa-flask"></i> <?php echo $this->lang->line('homework'); ?> </section> <!-- Main content --> <section class="content"> <?php $this->load->view('reports/_studentinformation'); ?> <div class="box removeboxmius"> <div class="box-header ptbnull"></div> <div class="box-header with-border"> <h3 class="box-title"><i class="fa fa-search"></i> <?php echo $this->lang->line('select_criteria'); ?></h3> </div> <form class="assign_teacher_form" action="<?php echo base_url(); ?>homework/evaluation_report" method="post" enctype="multipart/form-data"> <div class="box-body"> <div class="row"> <div class="col-md-12"> <?php if ($this->session->flashdata('msg')) { ?> <?php echo $this->session->flashdata('msg') ?> <?php } ?> <?php echo $this->customlib->getCSRF(); ?> </div> <div class="col-md-3 col-lg-3 col-sm-6"> <div class="form-group"> <label><?php echo $this->lang->line('class'); ?><small class="req"> *</small></label> <select autofocus="" id="searchclassid" name="class_id" onchange="getSectionByClass(this.value, 0, 'secid')" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($classlist as $class) { ?> <option <?php if ($class_id == $class["id"]) { echo "selected"; } ?> value="<?php echo $class['id'] ?>"><?php echo $class['class'] ?></option> <?php } ?> </select> <span class="class_id_error text-danger"><?php echo form_error('class_id'); ?></span> </div> </div> <div class="col-md-3 col-lg-3 col-sm-6"> <div class="form-group"> <label><?php echo $this->lang->line('section'); ?><small class="req"> *</small></label> <select id="secid" name="section_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> </select> <span class="section_id_error text-danger"><?php echo form_error('section_id'); ?></span> </div> </div> <div class="col-md-3 col-lg-3 col-sm-6"> <div class="form-group"> <label><?php echo $this->lang->line('subject') . " " . $this->lang->line('group') ?><small class="req"> *</small></label> <select id="subject_group_id" name="subject_group_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> </select> <span class="section_id_error text-danger"><?php echo form_error('subject_group_id'); ?></span> </div> </div> <div class="col-md-3 col-lg-3 col-sm-6"> <div class="form-group"> <label><?php echo $this->lang->line('subject'); ?><small class="req"> *</small></label> <select id="subid" name="subject_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> </select> <span class="section_id_error text-danger"><?php echo form_error('subject_id'); ?></span> </div> </div> </div> <button type="submit" id="search_filter" name="search" value="search_filter" class="btn btn-primary btn-sm checkbox-toggle pull-right"><i class="fa fa-search"></i> <?php echo $this->lang->line('search'); ?></button> </div> </form> <div class="col-md-12" id="errorinfo"> </div> <div class="" id="box_display"> <div class="box-header ptbnull"></div> <div class="box-header with-border"> <h3 class="box-title"><i class="fa fa-users"> </i> <?php echo $this->lang->line('evaluation_report'); ?></h3> </div> <div class="box-body table-responsive"> <div class="download_label"> <?php echo $this->lang->line('evaluation_report')."<br>";$this->customlib->get_postmessage(); ?></div> <table class="table table-striped table-bordered table-hover example" cellspacing="0" width="100%"> <thead> <tr> <th><?php echo $this->lang->line('subject') ?></th> <th><?php echo $this->lang->line('homework_date'); ?> </th> <th><?php echo $this->lang->line('submission_date'); ?></th> <th><?php echo $this->lang->line('complete') . "/" . $this->lang->line('incomplete'); ?></th> <th><?php echo $this->lang->line('complete'); ?>%</th> </tr> </thead> <tbody> <?php if (!empty($resultlist)) { foreach ($resultlist as $key => $homework) { ?> <tr> <td><?php echo $homework["subject_name"]; ?></td> <td><?php echo date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($homework['homework_date'])); ?></td> <td><?php echo date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($homework['submit_date'])); ?></td> <td><?php if(!empty($report[$homework['id']])){ echo $report[$homework['id']]['completed'] . "/" . ($report[$homework['id']]["total"] - $report[$homework['id']]["completed"]); } ?></td> <td><?php if(!empty($report[$homework['id']])){ echo $report[$homework['id']]["percentage"]; } ?></td> </tr> <?php } } ?> </tbody> </table> </div> </div> </div><!--./box box-primary--> </section> </div> <div class="modal fade" id="report" tabindex="-1" role="dialog" aria-labelledby="evaluation"> <div class="modal-dialog modal-lg" role="document"> <div class="modal-content modal-media-content"> <div class="modal-header modal-media-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h4 class="box-title"><?php echo $this->lang->line('homework_evaluation'); ?></h4> </div> <div class="modal-body pt0 pb0" id="evaluation_details"> </div> </div> </div> </div> <script type="text/javascript"> $(document).ready(function () { var date_format = '<?php echo $result = strtr($this->customlib->getSchoolDateFormat(), ['d' => 'dd', 'm' => 'mm', 'Y' => 'yyyy']) ?>'; $('#homework_date,#submit_date,#homeworkdate,#submitdate').datepicker({ format: date_format, autoclose: true, language: '<?php echo $language_name ?>' }); }); </script> <script> </script> <script type="text/javascript"> var date_format = '<?php echo $result = strtr($this->customlib->getSchoolDateFormat(), ['d' => 'dd', 'm' => 'MM', 'Y' => 'yyyy']) ?>'; $(document).ready(function (e) { getSectionByClass("<?php echo $class_id ?>", "<?php echo $section_id ?>", 'secid'); // getSubjectByClassandSection("<?php echo $class_id ?>", "<?php echo $section_id ?>", "<?php echo $subject_id ?>", 'subid'); getSubjectGroup("<?php echo $class_id ?>", "<?php echo $section_id ?>", "<?php echo $subject_group_id ?>", 'subject_group_id') getsubjectBySubjectGroup("<?php echo $class_id ?>", "<?php echo $section_id ?>", "<?php echo $subject_group_id ?>", "<?php echo $subject_id ?>", 'subid'); }); </script> <script type="text/javascript"> var save_method; //for save method string var update_id; //for save method string function getSectionByClass(class_id, section_id, select_control) { if (class_id != "") { $('#' + select_control).html(""); var base_url = '<?php echo base_url() ?>'; var div_data = '<option value=""><?php echo $this->lang->line('select'); ?></option>'; $.ajax({ type: "GET", url: base_url + "sections/getByClass", data: {'class_id': class_id}, dataType: "json", beforeSend: function () { $('#' + select_control).addClass('dropdownloading'); }, success: function (data) { $.each(data, function (i, obj) { var sel = ""; if (section_id == obj.section_id) { sel = "selected"; } div_data += "<option value=" + obj.section_id + " " + sel + ">" + obj.section + "</option>"; }); $('#' + select_control).append(div_data); }, complete: function () { $('#' + select_control).removeClass('dropdownloading'); } }); } } $(document).on('change', '#secid', function () { var class_id = $('#searchclassid').val(); var section_id = $(this).val(); getSubjectGroup(class_id, section_id, 0, 'subject_group_id'); }); $(document).on('change', '#subject_group_id', function () { var class_id = $('#searchclassid').val(); var section_id = $('#secid').val(); var subject_group_id = $(this).val(); getsubjectBySubjectGroup(class_id, section_id, subject_group_id, 0, 'subid'); }); function getSubjectGroup(class_id, section_id, subjectgroup_id, subject_group_target) { if (class_id != "" && section_id != "") { var div_data = '<option value=""><?php echo $this->lang->line('select'); ?></option>'; $.ajax({ type: 'POST', url: base_url + 'admin/subjectgroup/getGroupByClassandSection', data: {'class_id': class_id, 'section_id': section_id}, dataType: 'JSON', beforeSend: function () { // setting a timeout $('#' + subject_group_target).html("").addClass('dropdownloading'); }, success: function (data) { $.each(data, function (i, obj) { var sel = ""; if (subjectgroup_id == obj.subject_group_id) { sel = "selected"; } div_data += "<option value=" + obj.subject_group_id + " " + sel + ">" + obj.name + "</option>"; }); $('#' + subject_group_target).append(div_data); }, error: function (xhr) { // if error occured alert("Error occured.please try again"); }, complete: function () { $('#' + subject_group_target).removeClass('dropdownloading'); } }); } } function getsubjectBySubjectGroup(class_id, section_id, subject_group_id, subject_group_subject_id, subject_target) { if (class_id != "" && section_id != "" && subject_group_id != "") { var div_data = '<option value=""><?php echo $this->lang->line('select'); ?></option>'; $.ajax({ type: 'POST', url: base_url + 'admin/subjectgroup/getGroupsubjects', data: {'subject_group_id': subject_group_id}, dataType: 'JSON', beforeSend: function () { // setting a timeout $('#' + subject_target).html("").addClass('dropdownloading'); }, success: function (data) { console.log(data); $.each(data, function (i, obj) { var sel = ""; if (subject_group_subject_id == obj.id) { sel = "selected"; } div_data += "<option value=" + obj.id + " " + sel + ">" + obj.name + "</option>"; }); $('#' + subject_target).append(div_data); }, error: function (xhr) { // if error occured alert("Error occured.please try again"); }, complete: function () { $('#' + subject_target).removeClass('dropdownloading'); } }); } } </script>