Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
aa
/
application
/
views
/
reports
✏️
Editing: classsectionreport.php
<div class="content-wrapper" style="min-height: 946px;"> <section class="content-header"> <h1> <i class="fa fa-line-chart"></i> <?php echo $this->lang->line('reports'); ?> <small> <?php echo $this->lang->line('filter_by_name1'); ?></small></h1> </section> <!-- Main content --> <section class="content" > <?php $this->load->view('reports/_studentinformation'); ?> <div class="row"> <div class="col-md-12"> <div class="box removeboxmius"> <div class="box-header ptbnull"> <h3 class="box-title titlefix"><i class="fa fa-users"></i> <?php echo $this->lang->line('class_section_report'); ?> </h3> </div> <div class="box-body table-responsive"> <?php if(!empty($class_section_list)){ ?> <div class="download_label"><?php echo $this->lang->line('class_section_report'); ?></div> <table class="table table-striped table-bordered table-hover example"> <thead> <tr> <th><?php echo $this->lang->line('s_no'); ?></th> <th class="text text-center"><?php echo $this->lang->line('class'); ?></th> <th class="text text-center"><?php echo $this->lang->line('students'); ?></th> <th class="text text-right noExport"><?php echo $this->lang->line('action'); ?></th> </tr> </thead> <tbody> <?php $count=1; foreach ($class_section_list as $class_section_key => $class_section_value) { ?> <tr> <td><?php echo $count; ?></td> <td class="text text-center"><?php echo $class_section_value->class . " (" . $class_section_value->section . ")" ?></td> <td class="text text-center"><?php echo $class_section_value->student_count; ?></td> <td class="text text-right"> <button type="button" class="btn btn-default btn-xs studentlist" id="load" data-toggle="tooltip" data-clssection-id="<?php echo $class_section_value->id; ?>" title="<?php echo $this->lang->line('view').' '.$this->lang->line('students'); ?>" data-loading-text="<i class='fa fa-spinner fa-spin'></i>"><i class="fa fa-eye"></i></button></td> </tr> <?php $count+=1; } ?> </tbody> </table> <?php }else{ ?> <div class="alert alert-info"> <?php echo $this->lang->line('no_record_found'); ?> </div> <?php } ?> </div> </div> </div><!--./box box-primary --> </div><!-- ./col-md-12 --> </section> </div> <div id="studentModal" class="modal fade" role="dialog"> <div class="modal-dialog modal-xl"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h4 class="modal-title"><?php echo $this->lang->line('student').' '.$this->lang->line('list'); ?></h4> </div> <div class="modal-body"> </div> </div> </div> </div> <script type="text/javascript"> $(document).ready(function(){ $('#studentModal').modal({backdrop:'static', keyboard:false, show: false}); }); $(document).on('click', '.studentlist', function () { var $this = $(this); var date=$this.data('date'); $.ajax({ type: 'POST', url: baseurl + "student/getStudentByClassSection", data: {'cls_section_id':$this.data('clssectionId')}, dataType: 'JSON', beforeSend: function () { $this.button('loading'); }, success: function (data) { $('#studentModal .modal-body').html(data.page); $('#studentModal').modal('show'); $this.button('reset'); }, error: function (xhr) { // if error occured alert("Error occured.please try again"); $this.button('reset'); }, complete: function () { $this.button('reset'); } }); }); </script>
💾 Save Changes
❌ Cancel