53 lines
2.6 KiB
PHP
53 lines
2.6 KiB
PHP
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12 mt-4">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<?php if ($this->session->flashdata('status')): ?>
|
|
<div class="alert alert-success">
|
|
<?= $this->session->flashdata('status'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<h3>
|
|
Drafts
|
|
</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<!-- here your table will occur -->
|
|
<table id="basetable1" class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Form_Id</th>
|
|
<th>Title</th>
|
|
<th>Description</th>
|
|
<th>Created On</th>
|
|
<th>Edit</th>
|
|
<th>Delete</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($forms as $row): ?>
|
|
<tr>
|
|
<td><?php echo $row->id; ?></td>
|
|
<td><a
|
|
href="<?php echo base_url('publish/' . $row->id); ?>"><?php echo $row->title; ?></a>
|
|
</td>
|
|
<td><?php echo $row->description; ?></td>
|
|
<td><?php echo $row->created_at; ?></td>
|
|
<td>
|
|
<a href="<?php echo base_url('edit/' . $row->id); ?>"
|
|
class="btn btn-success btn-sm " style=" background-color: rgb(103, 58, 183); border-color: rgb(103, 58, 183); color: white;">Edit</a>
|
|
</td>
|
|
<td>
|
|
<a href="<?php echo base_url('forms/delete/' . $row->id); ?>"
|
|
class="btn btn-danger btn-sm" style=" background-color: rgb(103, 58, 183); border-color: rgb(103, 58, 183); color: white;">Delete</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|