Current Path : /var/www/alh/admin/view/template/sale/ |
Current File : /var/www/alh/admin/view/template/sale/customer_history.tpl |
<?php if ($error_warning) { ?> <div class="warning"><?php echo $error_warning; ?></div> <?php } ?> <?php if ($success) { ?> <div class="success"><?php echo $success; ?></div> <?php } ?> <table class="list"> <thead> <tr> <td class="left"><?php echo $column_date_added; ?></td> <td class="left"><?php echo $column_comment; ?></td> </tr> </thead> <tbody> <?php if ($histories) { ?> <?php foreach ($histories as $history) { ?> <tr> <td class="left"><?php echo $history['date_added']; ?></td> <td class="left"><?php echo $history['comment']; ?></td> </tr> <?php } ?> <?php } else { ?> <tr> <td class="center" colspan="2"><?php echo $text_no_results; ?></td> </tr> <?php } ?> </tbody> </table> <div class="pagination"><?php echo $pagination; ?></div>