File: /home/dmstechonline/crm.chaitanyahospitalvirar.com/application/views/admin/front/notice/index.php
<style type="text/css">
.table-sortable tbody tr {
cursor: move;
}
</style>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<!-- Main content -->
<section class="content">
<div class="row">
<!-- left column -->
<div class="col-md-12">
<!-- general form elements -->
<div class="box box-primary" id="holist">
<div class="box-header ptbnull">
<h3 class="box-title titlefix"><?php echo $this->lang->line('news_list'); ?></h3>
<?php
if ($this->rbac->hasPrivilege('notice', 'can_add')) {
?>
<div class="box-tools pull-right">
<a href="<?php echo site_url('admin/front/notice/create'); ?>" class="btn btn-sm btn-primary"><i class="fa fa-plus"></i> <?php echo $this->lang->line('add'); ?></a>
</div>
<?php } ?>
</div><!-- /.box-header -->
<div class="box-body">
<div class="mailbox-controls">
<div class="pull-right">
</div><!-- /.pull-right -->
</div>
<div class="table-responsive mailbox-messages">
<table class="table table-striped table-bordered table-hover example">
<thead>
<tr>
<th><?php echo $this->lang->line('title'); ?></th>
<th><?php echo $this->lang->line('url'); ?></th>
<th class="text-right noExport">
<?php echo $this->lang->line('action'); ?>
</th>
</tr>
</thead>
<tbody>
<?php if (empty($listResult)) {
?>
<?php
} else {
$count = 1;
foreach ($listResult as $page) {
?>
<tr id="<?php echo $page["id"]; ?>">
<td class="mailbox-name">
<a href="#" ><?php echo $page['title'] ?></a>
</td>
<td class="mailbox-name"> <a href="<?php echo base_url() . $page['url'] ?>" target="_blank"><?php echo base_url() . $page['url'] ?></a></td>
<td class="mailbox-date pull-right no-print">
<?php
if ($this->rbac->hasPrivilege('notice', 'can_edit')) {
?>
<a href="<?php echo site_url('admin/front/notice/edit/' . $page['slug']); ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('edit'); ?>">
<i class="fa fa-pencil"></i>
</a>
<?php
}
if ($this->rbac->hasPrivilege('notice', 'can_delete')) {
?>
<a class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('delete'); ?>" onclick="delete_recordByIdReload('admin/front/notice/delete/<?php echo $page['id'];?>', '<?php echo $this->lang->line('delete_message'); ?>')">
<i class="fa fa-remove"></i>
</a>
<?php }?>
</td>
</tr>
<?php
}
$count++;
}
?>
</tbody>
</table><!-- /.table -->
</div><!-- /.mail-box-messages -->
</div><!-- /.box-body -->
</div>
</div><!--/.col (left) -->
</div>
</section><!-- /.content -->
</div><!-- /.content-wrapper -->