File: /storage/v6964/school/public_html/school/application/views/backend/librarian/author.php
<div class="row">
<div class="col-sm-5">
<div class="panel panel-info">
<div class="panel-heading"> <i class="fa fa-plus"></i> <?php echo get_phrase('add_author'); ?></div>
<?php echo form_open(base_url() . 'librarian/author/create', array('class' => 'form-horizontal form-goups-bordered validate'));?>
<div class="panel-body table-responsive">
<div class="form-group">
<label class="col-md-12" for="example-text"><?php echo get_phrase('author_name');?></label>
<div class="col-sm-12">
<input name="name" type="text" class="form-control"/ required>
</div>
</div>
<div class="form-group">
<label class="col-md-12" for="example-text"><?php echo get_phrase('description');?></label>
<div class="col-sm-12">
<textarea rows="3" class="form-control" name="description" required></textarea>
</div>
</div>
<div class="form-group">
<button type="submit" class="btn btn-block btn-info btn-rounded btn-sm "><i class="fa fa-plus"></i> <?php echo get_phrase('add');?></button>
</div>
<?php echo form_close();?>
</div>
</div>
</div>
<!----CREATION FORM ENDS-->
<div class="col-sm-7">
<div class="panel panel-info">
<div class="panel-heading"> <i class="fa fa-list"></i> <?php echo get_phrase('list_author'); ?></div>
<div class="panel-wrapper collapse in" aria-expanded="true">
<div class="panel-body table-responsive">
<table id="example23" class="display nowrap" cellspacing="0" width="100%">
<thead>
<tr>
<th><div>#</div></th>
<th><div><?php echo get_phrase('name');?></div></th>
<th><div><?php echo get_phrase('description');?></div></th>
<th><div><?php echo get_phrase('options');?></div></th>
</tr>
</thead>
<tbody>
<?php $count = 1;
$select_author = $this->db->get('author')->result_array();
foreach ($select_author as $key => $author): ?>
<tr>
<td><?php echo $count++;?></td>
<td><?php echo $author ['name'];?></td>
<td><?php echo $author ['description'];?></td>
<td>
<a onclick="showAjaxModal('<?php echo base_url();?>modal/popup/edit_author/<?php echo $author['author_id'];?>')" class="btn btn-info btn-circle btn-xs"><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url();?>librarian/author/delete/<?php echo $author['author_id'];?>" onclick="return confirm('Are you sure want to delete?');" class="btn btn-danger btn-circle btn-xs" style="color:white"><i class="fa fa-times"></i></a>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!----TABLE LISTING ENDS--->