File: /www/wwwroot/wwwshoopermcom/application/views/dashboard/comments.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<div class="box">
<div class="box-header with-border">
<div class="left">
<h3 class="box-title"><?= html_escape($title); ?></h3>
</div>
</div>
<div class="box-body">
<div class="row">
<!-- include message block -->
<div class="col-sm-12">
<?php $this->load->view('admin/includes/_messages'); ?>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr role="row">
<th scope="col"><?php echo trans("id"); ?></th>
<th scope="col"><?php echo trans("username"); ?></th>
<th scope="col"><?php echo trans("comment"); ?></th>
<th scope="col"><?php echo trans("product"); ?></th>
<th scope="col"><?php echo trans("date"); ?></th>
</tr>
</thead>
<tbody>
<?php if (!empty($comments)): ?>
<?php foreach ($comments as $comment):
$product = get_active_product($comment->product_id); ?>
<tr>
<td style="width: 5%;"><?php echo $comment->id; ?></td>
<td style="width: 10%;">
<a href="<?php echo generate_profile_url($comment->user_slug); ?>" class="link-black" target="_blank">
<?php echo html_escape($comment->name); ?>
</a>
</td>
<td style="width: 40%;"><?php echo html_escape($comment->comment); ?></td>
<td style="width: 30%;">
<?php if (!empty($product)): ?>
<a href="<?= generate_product_url($product); ?>" class="link-black font-500" target="_blank">
<?= get_product_title($product); ?>
</a>
<?php endif; ?>
</td>
<td class="white-space-nowrap" style="width: 15%"><?php echo formatted_date($comment->created_at); ?></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</tbody>
</table>
</div>
<?php if (empty($comments)): ?>
<p class="text-center">
<?php echo trans("no_records_found"); ?>
</p>
<?php endif; ?>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<?php if (!empty($comments)): ?>
<div class="number-of-entries">
<span><?= trans("number_of_entries"); ?>:</span> <strong><?= $num_rows; ?></strong>
</div>
<?php endif; ?>
<div class="table-pagination">
<?php echo $this->pagination->create_links(); ?>
</div>
</div>
</div>
</div><!-- /.box-body -->
</div>