| Server IP : 162.214.74.102 / Your IP : 216.73.216.59 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_apps/school/application/views/backend/student/ |
Upload File : |
<button onclick="showAjaxModal('<?php echo base_url();?>index.php?modal/popup/book_request_add');"
class="btn btn-primary pull-right">
<?php echo get_phrase('request_book'); ?>
</button>
<div style="clear:both;"></div>
<br>
<div class="row">
<div class="col-md-12">
<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>
</div>