Preview: book.php
Size: 2.02 KB
/home/jambtst2015/public_html/app/application/views/backend/parent/book.php
<div class="row">
<div class="col-md-12">
<!------CONTROL TABS START------->
<ul class="nav nav-tabs bordered">
<li class="active">
<a href="#list" data-toggle="tab"><i class="entypo-menu"></i>
<?php echo get_phrase('book_list');?>
</a></li>
</ul>
<!------CONTROL TABS END------->
<div class="tab-content">
<!----TABLE LISTING STARTS--->
<div class="tab-pane box active" id="list">
<table cellpadding="0" cellspacing="0" border="0" class="table table-bordered datatable" id="table_export">
<thead>
<tr>
<th><div>#</div></th>
<th><div><?php echo get_phrase('book_name');?></div></th>
<th><div><?php echo get_phrase('author');?></div></th>
<th><div><?php echo get_phrase('description');?></div></th>
<th><div><?php echo get_phrase('price');?></div></th>
<th><div><?php echo get_phrase('class');?></div></th>
<th><div><?php echo get_phrase('status');?></div></th>
</tr>
</thead>
<tbody>
<?php $count = 1;foreach($books as $row):?>
<tr>
<td><?php echo $count++;?></td>
<td><?php echo $row['name'];?></td>
<td><?php echo $row['author'];?></td>
<td><?php echo $row['description'];?></td>
<td><?php echo $row['price'];?></td>
<td><?php echo $this->crud_model->get_type_name_by_id('class',$row['class_id']);?></td>
<td><span class="label label-<?php if($row['status']=='available')echo 'success';else echo 'secondary';?>"><?php echo $row['status'];?></span></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
<!----TABLE LISTING ENDS--->
</div>
</div>
</div>
Directory Contents
Dirs: 0 × Files: 24