Current Path : /var/www/upload/admin/view/template/marketing/ |
Current File : /var/www/upload/admin/view/template/marketing/affiliate_transaction.tpl |
<div class="table-responsive"> <table class="table table-bordered table-hover"> <thead> <tr> <td class="text-left"><?php echo $column_date_added; ?></td> <td class="text-left"><?php echo $column_description; ?></td> <td class="text-right"><?php echo $column_amount; ?></td> </tr> </thead> <tbody> <?php if ($transactions) { ?> <?php foreach ($transactions as $transaction) { ?> <tr> <td class="text-left"><?php echo $transaction['date_added']; ?></td> <td class="text-left"><?php echo $transaction['description']; ?></td> <td class="text-right"><?php echo $transaction['amount']; ?></td> </tr> <?php } ?> <tr> <td> </td> <td class="text-right"><b><?php echo $text_balance; ?></b></td> <td class="text-right"><?php echo $balance; ?></td> </tr> <?php } else { ?> <tr> <td class="text-center" colspan="3"><?php echo $text_no_results; ?></td> </tr> <?php } ?> </tbody> </table> </div> <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>