ok
Direktori : /proc/self/root/home2/selectio/www/bharath/application/views/admin/timetable/ |
Current File : //proc/self/root/home2/selectio/www/bharath/application/views/admin/timetable/mytimetable.php |
<div class="content-wrapper" style="min-height: 946px;"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> <i class="fa fa-mortar-board"></i> Timetable --r</h1> </section> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-md-12"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><i class="fa fa-search"></i> Teacher Time Table</h3> <div class="box-tools pull-right"></div> </div> <div class="box-body"> <?php if (!empty($timetable)) { ?> <table class="table table-stripped"> <thead> <tr> <?php foreach ($timetable as $tm_key => $tm_value) { ?> <th class="text text-center"><?php echo $this->lang->line(strtolower($tm_key)); ?></th> <?php } ?> </tr> </thead> <tbody> <tr> <?php foreach ($timetable as $tm_key => $tm_value) { ?> <td class="text text-center"> <?php if (!$timetable[$tm_key]) { ?> <div class="attachment-block clearfix"> <b class="text text-center"><?php echo $this->lang->line('not'); ?> <br><?php echo $this->lang->line('scheduled'); ?></b><br> </div> <?php } else { $record_flag = 0; foreach ($timetable[$tm_key] as $tm_k => $tm_kue) { if($record_flag == 0){ $record_color = "green"; $record_flag = 1; }else{ $record_color = "yellow"; $record_flag = 0; } ?> <div class="attachment-block clearfix"> <b class="text-<?php echo $record_color; ?>"><?php echo $this->lang->line('subject') ?>: <?php echo $tm_kue->subject_name; if($tm_kue->subject_code!=''){ echo " (" . $tm_kue->subject_code . ")"; } ?> </b><br> <strong class="text-<?php echo $record_color; ?>"><?php echo $this->lang->line('class') ?>: <?php echo $tm_kue->class . "(" . $tm_kue->section . ")"; ?></strong><br> <strong class="text-<?php echo $record_color; ?>"><?php echo $tm_kue->time_from ?></strong> <b class="text text-center">-</b> <strong class="text-<?php echo $record_color; ?>"><?php echo $tm_kue->time_to; ?></strong><br> <strong class="text-<?php echo $record_color; ?>"><?php echo $this->lang->line('room_no'); ?>: <?php echo $tm_kue->room_no; ?></strong><br> </div> <?php } } ?> </td> <?php } ?> </tr> </tbody> </table> <?php } else { ?> <div class="alert alert-info"> <?php echo $this->lang->line('no_record_found'); ?> </div> <?php } ?> </div> </div> </div> </div> </section> </div>