Preview: teacher.php
Size: 1.40 KB
/home/jambtst2015/public_html/app/application/views/backend/parent/teacher.php
<table class="table table-bordered datatable" id="table_export">
<thead>
<tr>
<th width="80"><div><?php echo get_phrase('photo');?></div></th>
<th><div><?php echo get_phrase('name');?></div></th>
<th><div><?php echo get_phrase('email');?></div></th>
</tr>
</thead>
<tbody>
<?php
$teachers = $this->db->get('teacher' )->result_array();
foreach($teachers as $row):?>
<tr>
<td><img src="<?php echo $this->crud_model->get_image_url('teacher',$row['teacher_id']);?>" class="img-circle" width="30" /></td>
<td><?php echo $row['name'];?></td>
<td><?php echo $row['email'];?></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<!----- DATA TABLE EXPORT CONFIGURATIONS ----->
<script type="text/javascript">
jQuery(document).ready(function($)
{
var datatable = $("#table_export").dataTable();
$(".dataTables_wrapper select").select2({
minimumResultsForSearch: -1
});
});
</script>
Directory Contents
Dirs: 0 × Files: 24