Файл: upload-2031-rs1/admin/view/template/sale/customer_history.tpl
Строк: 22
<?php if ($error_warning) { ?>
<div class="alert
alert-danger"><i class="fa
fa-exclamation-circle"></i> <?php echo $error_warning;
?>
<button type="button" class="close"
data-dismiss="alert">×</button>
</div>
<?php
} ?>
<?php if ($success) { ?>
<div class="alert
alert-success"><i class="fa
fa-check-circle"></i> <?php echo $success; ?>
<button type="button" class="close"
data-dismiss="alert">×</button>
</div>
<?php
} ?>
<table class="table table-bordered">
<thead>
<tr>
<td
class="text-left"><?php echo $column_date_added;
?></td>
<td class="text-left"><?php echo
$column_comment; ?></td>
</tr>
</thead>
<tbody>
<?php if ($histories) { ?>
<?php foreach
($histories as $history) { ?>
<tr>
<td
class="text-left"><?php echo $history['date_added'];
?></td>
<td class="text-left"><?php echo
$history['comment']; ?></td>
</tr>
<?php } ?>
<?php } else { ?>
<tr>
<td
class="text-center" colspan="2"><?php echo
$text_no_results; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
<div class="row">
<div
class="col-sm-6 text-left"><?php echo $pagination;
?></div>
<div class="col-sm-6
text-right"><?php echo $results; ?></div>
</div>