Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16911 manas 1
<div class="appTransactions index">
2
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
3
	<h2><?php echo __('App Transactions For Retailer Id '.$retailerId); ?></h2>
4
	<table cellpadding="0" cellspacing="0" class="table table-striped">
5
	<tr>
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('clicks'); ?></th>
9
			<th><?php echo $this->Paginator->sort('approved'); ?></th>
10
			<th><?php echo $this->Paginator->sort('conversion_percentage'); ?></th> 
11
 
12
	</tr>
13
 
14
	<?php foreach ($appTransactions as $appTransaction): ?>
15
	<tr>
16
		<td><?php echo h($appTransaction['AppTransaction']['app_id']); ?>&nbsp;</td>
17
		<td><?php echo h($appTransaction['AppTransaction']['app_name']); ?>&nbsp;</td>
18
		<td><?php echo h($appTransaction[0]['count']); ?>&nbsp;</td>
19
		<td><?php if(!isset($appTransaction['AppTransaction']['approved'])){echo h('0');}else{echo h($appTransaction['AppTransaction']['approved']);}; ?>&nbsp;</td>
20
		<td><?php if(!isset($appTransaction['AppTransaction']['conversion_percentage'])){echo h('0');}else{echo h($appTransaction['AppTransaction']['conversion_percentage']);}; ?>&nbsp;</td>
21
<?php endforeach; ?>
22
	</table>
23
</div>