File: /storage/v6964/school/public_html/school/application/views/backend/admin/noticeboard.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_noticeboard'); ?></div>
<div class="panel-body table-responsive">
<?php echo form_open(base_url(). 'admin/noticeboard/create' , array('class' => 'form-horizontal form-groups-bordered validate'));?>
<!----CREATION FORM STARTS---->
<div class="form-group">
<label class="col-md-12" for="example-text"><?php echo get_phrase('noticeboard_title');?></label>
<div class="col-sm-12">
<input name="title" type="text" class="form-control"/ required>
</div>
</div>
<div class="form-group">
<label class="col-md-12" for="example-text"><?php echo get_phrase('Location');?></label>
<div class="col-sm-12">
<input type="text" class="form-control" name="location"/ required>
</div>
</div>
<div class="form-group">
<label class="col-md-12" for="example-text"><?php echo get_phrase('content');?></label>
<div class="col-sm-12">
<textarea type="text" class="form-control" name="description" required ></textarea>
</div>
</div>
<div class="form-group">
<label class="col-md-12" for="example-text"><?php echo get_phrase('noticeboard_date');?></label>
<div class="col-sm-12">
<input class="form-control m-r-10" name="timestamp" type="date" value="<?php echo date('Y-m-d');?>" id="example-date-input" required>
</div>
</div>
<div class="form-group">
<label class="col-md-12" for="example-text"><?php echo get_phrase('Send SMS ?');?></label>
<div class="col-sm-12">
<input class="js-switch" name="sendsms" type="checkbox" >
</div>
</div>
<div class="form-group">
<button type="submit" class="btn btn-info btn-sm btn-block btn-rounded"> <i class="fa fa-plus"></i> <?php echo get_phrase('send_noticeboard');?></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_noticeboard'); ?></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('title');?></div></th>
<th><div><?php echo get_phrase('location');?></div></th>
<th><div><?php echo get_phrase('content');?></div></th>
<th><div><?php echo get_phrase('date');?></div></th>
<th><div><?php echo get_phrase('options');?></div></th>
</tr>
</thead>
<tbody>
<?php
$count = 1;
$select_noticeboard = $this->db->get('noticeboard')->result_array();
foreach($select_noticeboard as $key => $noticeboard):
?>
<tr>
<td><?php echo $count++;?></td>
<td><?php echo $noticeboard ['title'];?></td>
<td><?php echo $noticeboard ['location'];?></td>
<td><?php echo $noticeboard ['description'];?></td>
<td><?php echo date('d M,Y', $noticeboard ['timestamp']);?></td>
<td>
<a onclick="showAjaxModal('<?php echo base_url();?>modal/popup/edit_noticeboard/<?php echo $noticeboard['noticeboard_id'];?>')" class="btn btn-info btn-circle btn-xs"><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url();?>admin/noticeboard/delete/<?php echo $noticeboard['noticeboard_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--->