Blame | Last modification | View Log | RSS feed
<div class="appTransactions index"><h2><?php echo __('App Transactions'); ?></h2><table cellpadding="0" cellspacing="0" class="table table-striped"><tr><th><?php echo $this->Paginator->sort('retailer_id'); ?></th><th><?php echo $this->Paginator->sort('app_id'); ?></th><th><?php echo $this->Paginator->sort('app_name'); ?></th><th><?php echo $this->Paginator->sort('cash_back_description'); ?></th><th><?php echo $this->Paginator->sort('payout_status'); ?></th><th><?php echo $this->Paginator->sort('transaction_time'); ?></th><th><?php echo $this->Paginator->sort('payout_time'); ?></th><th><?php echo $this->Paginator->sort('offer_price'); ?></th><th><?php echo $this->Paginator->sort('payout_amount'); ?></th><th><?php echo $this->Paginator->sort('user_payout'); ?></th><th><?php echo $this->Paginator->sort('payout_description'); ?></th></tr><?php foreach ($appTransactions as $appTransaction): ?><tr><td><?php echo h($appTransaction['AppTransaction']['retailer_id']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['app_id']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['app_name']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['cash_back_description']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['payout_status']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['transaction_time']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['payout_time']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['offer_price']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['payout_amount']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['final_user_payout']); ?> </td><td><?php echo h($appTransaction['AppTransaction']['payout_description']); ?> </td></tr><?php endforeach; ?></table><p><?phpecho $this->Paginator->counter(array('format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')));?> </p><div class="paging"><?phpecho $this->Paginator->prev('< ' . __('previous '), array(), null, array('class' => 'prev disabled'));echo $this->Paginator->numbers(array('separator' => ' '));echo $this->Paginator->next(__(' next') . ' >', array(), null, array('class' => 'next disabled'));?></div></div>