ok
Direktori : /home2/selectio/www/geniusgroove.in/crm/application/views/reports/ |
Current File : //home2/selectio/www/geniusgroove.in/crm/application/views/reports/teacher_ratio_report.php |
<?php $currency_symbol = $this->customlib->getSchoolCurrencyFormat(); ?> <style type="text/css"> /*REQUIRED*/ .carousel-row { margin-bottom: 10px; } .slide-row { padding: 0; background-color: #ffffff; min-height: 150px; border: 1px solid #e7e7e7; overflow: hidden; height: auto; position: relative; } .slide-carousel { width: 20%; float: left; display: inline-block; } .slide-carousel .carousel-indicators { margin-bottom: 0; bottom: 0; background: rgba(0, 0, 0, .5); } .slide-carousel .carousel-indicators li { border-radius: 0; width: 20px; height: 6px; } .slide-carousel .carousel-indicators .active { margin: 1px; } .slide-content { position: absolute; top: 0; left: 20%; display: block; float: left; width: 80%; max-height: 76%; padding: 1.5% 2% 2% 2%; overflow-y: auto; } .slide-content h4 { margin-bottom: 3px; margin-top: 0; } .slide-footer { position: absolute; bottom: 0; left: 20%; width: 78%; height: 20%; margin: 1%; } /* Scrollbars */ .slide-content::-webkit-scrollbar { width: 5px; } .slide-content::-webkit-scrollbar-thumb:vertical { margin: 5px; background-color: #999; -webkit-border-radius: 5px; } .slide-content::-webkit-scrollbar-button:start:decrement, .slide-content::-webkit-scrollbar-button:end:increment { height: 5px; display: block; } </style> <div class="content-wrapper" style="min-height: 946px;"> <section class="content-header"> <h1><i class="fa fa-bus"></i> <?php //echo $this->lang->line('transport'); ?></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=""> <div class="box-header ptbnull"></div> <div class="box-header ptbnull"> <h3 class="box-title titlefix"><i class="fa fa-money"></i> <?php echo $this->lang->line('student_teacher_ratio_report'); ?></h3> </div> <div class="box-body table-responsive"> <div class="download_label"> <?php echo $this->lang->line('student_teacher_ratio_report'); ?></div> <table class="table table-striped table-bordered table-hover example"> <thead> <tr> <th><?php echo $this->lang->line('class_section'); ?></th> <th><?php echo $this->lang->line('total_students'); ?></th> <th><?php echo $this->lang->line('total_assigned_teachers'); ?></th> <th><?php echo $this->lang->line('student_teacher_ratio'); ?></th> </tr> </thead> <tbody> <?php $total_boys = $total_girls = $total_students = $all_teacher = 0; if(!empty($result)){ foreach ($result as $key => $value) { ?> <tr> <td><?php echo $value['class'] . " (" . $value['section'] . ")"; ?></td> <td><?php echo $value['total_student']; ?></td> <td><?php echo $value['total_teacher']; ?></td> <td><?php echo $value['teacher_ratio'] ?></td> </tr> <?php $total_boys += $value['male']; $total_girls += $value['female']; $total_students += $value['total_student']; $all_teacher += $value['total_teacher']; } } ?> </tbody> <?php if(!empty($result)){ ?> <tr><td> </td><td><b><?php echo $total_students; ?></b></td><td><b><?php echo $all_teacher; ?></b></td><td><?php echo $all_student_teacher_ratio; ?></td></tr> <?php } ?> </table> </div> </div> </div> </div> </div> </div> </section> </div>