Subversion Repositories SmartDukaan

Rev

Rev 16923 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
16773 manas 1
<div class="appTransactions index">
2
	<h2><?php echo __('App Transactions'); ?></h2>
3
	<table cellpadding="0" cellspacing="0" class="table table-striped">
4
	<tr>
5
			<th><?php echo $this->Paginator->sort('retailer_id'); ?></th>
6
			<th><?php echo $this->Paginator->sort('app_id'); ?></th>
7
			<th><?php echo $this->Paginator->sort('app_name'); ?></th>
8
			<th><?php echo $this->Paginator->sort('cash_back_description'); ?></th>
9
			<th><?php echo $this->Paginator->sort('payout_status'); ?></th>
10
			<th><?php echo $this->Paginator->sort('transaction_time'); ?></th>
11
			<th><?php echo $this->Paginator->sort('payout_time'); ?></th>
12
			<th><?php echo $this->Paginator->sort('offer_price'); ?></th>
13
			<th><?php echo $this->Paginator->sort('payout_amount'); ?></th>
14
			<th><?php echo $this->Paginator->sort('user_payout'); ?></th>
16924 manas 15
			<th><?php echo $this->Paginator->sort('payout_description'); ?></th>
16773 manas 16
 
17
	</tr>
18
	<?php foreach ($appTransactions as $appTransaction): ?>
19
	<tr>
20
		<td><?php echo h($appTransaction['AppTransaction']['retailer_id']); ?>&nbsp;</td>
21
		<td><?php echo h($appTransaction['AppTransaction']['app_id']); ?>&nbsp;</td>
22
		<td><?php echo h($appTransaction['AppTransaction']['app_name']); ?>&nbsp;</td>
23
		<td><?php echo h($appTransaction['AppTransaction']['cash_back_description']); ?>&nbsp;</td>
24
		<td><?php echo h($appTransaction['AppTransaction']['payout_status']); ?>&nbsp;</td>
25
		<td><?php echo h($appTransaction['AppTransaction']['transaction_time']); ?>&nbsp;</td>
26
		<td><?php echo h($appTransaction['AppTransaction']['payout_time']); ?>&nbsp;</td>
27
		<td><?php echo h($appTransaction['AppTransaction']['offer_price']); ?>&nbsp;</td>
28
		<td><?php echo h($appTransaction['AppTransaction']['payout_amount']); ?>&nbsp;</td>
16923 manas 29
		<td><?php echo h($appTransaction['AppTransaction']['final_user_payout']); ?>&nbsp;</td>
16924 manas 30
		<td><?php echo h($appTransaction['AppTransaction']['payout_description']); ?>&nbsp;</td>
16773 manas 31
 
32
	</tr>
33
<?php endforeach; ?>
34
	</table>
35
	<p>
36
	<?php
37
	echo $this->Paginator->counter(array(
38
	'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
39
	));
40
	?>	</p>
41
	<div class="paging">
42
	<?php
43
		echo $this->Paginator->prev('< ' . __('previous '), array(), null, array('class' => 'prev disabled'));
44
		echo $this->Paginator->numbers(array('separator' => ' '));
45
		echo $this->Paginator->next(__(' next') . ' >', array(), null, array('class' => 'next disabled'));
46
	?>
47
	</div>
48
</div>