| 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('app_id'); ?></th>
|
|
|
6 |
<th><?php echo $this->Paginator->sort('app_name'); ?></th>
|
|
|
7 |
<th><?php echo $this->Paginator->sort('count'); ?></th>
|
|
|
8 |
<th><?php echo $this->Paginator->sort('approved'); ?></th>
|
|
|
9 |
<th><?php echo $this->Paginator->sort('conversion_percentage'); ?></th>
|
|
|
10 |
|
|
|
11 |
</tr>
|
|
|
12 |
|
|
|
13 |
<?php foreach ($appTransactions as $appTransaction): ?>
|
|
|
14 |
<tr>
|
|
|
15 |
<td><?php echo h($appTransaction['AppTransaction']['app_id']); ?> </td>
|
|
|
16 |
<td><?php echo h($appTransaction['AppTransaction']['app_name']); ?> </td>
|
|
|
17 |
<td><?php echo h($appTransaction[0]['count']); ?> </td>
|
|
|
18 |
<td><?php echo h($appTransaction['AppTransaction']['approved']); ?> </td>
|
|
|
19 |
<td><?php echo h($appTransaction['AppTransaction']['payout_description']); ?> </td>
|
|
|
20 |
|
|
|
21 |
</tr>
|
|
|
22 |
<?php endforeach; ?>
|
|
|
23 |
</table>
|
|
|
24 |
<p>
|
|
|
25 |
<?php
|
|
|
26 |
echo $this->Paginator->counter(array(
|
|
|
27 |
'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
|
|
|
28 |
));
|
|
|
29 |
?> </p>
|
|
|
30 |
<div class="paging">
|
|
|
31 |
<?php
|
|
|
32 |
echo $this->Paginator->prev('< ' . __('previous '), array(), null, array('class' => 'prev disabled'));
|
|
|
33 |
echo $this->Paginator->numbers(array('separator' => ' '));
|
|
|
34 |
echo $this->Paginator->next(__(' next') . ' >', array(), null, array('class' => 'next disabled'));
|
|
|
35 |
?>
|
|
|
36 |
</div>
|
|
|
37 |
</div>
|