Subversion Repositories SmartDukaan

Rev

Rev 16811 | Rev 16873 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 16811 Rev 16813
Line 1... Line 1...
1
<div class="appTransactions index">
1
<div class="appTransactions index">
2
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
2
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
3
	<h2><?php echo __('App Transactions App Wise'); ?></h2>
3
	<h2><?php echo __('App Transactions App Wise'); ?></h2>
-
 
4
	<h4><?php echo __('Total Clicks '.$totalClicks);?></h4>
-
 
5
	<h4><?php echo __('Total Approved '.$totalApproved);?></h4>
-
 
6
	<h4><?php echo __('Overall Conversion Percentage '.ceil(($totalApproved/$totalClicks)*100)) . '%';?></h4>
4
		<form class="navbar-form" role="search" method="GET" name="search" action="<?php echo $base_url;?>admin/appTransactions/appwise">
7
		<form class="navbar-form" role="search" method="GET" name="search" action="<?php echo $base_url;?>admin/appTransactions/appwise">
5
        		<div><select id="mySelect">
8
        		<div><select id="mySelect">
6
					  <option value="today">Today</option>
9
					  <option value="today">Today</option>
7
					  <option value="yesterday">Yesterday</option>
10
					  <option value="yesterday">Yesterday</option>
8
					  <option value="range">Date Range</option>
11
					  <option value="range">Date Range</option>
Line 23... Line 26...
23
 
26
 
24
	<table cellpadding="0" cellspacing="0" class="table table-striped">
27
	<table cellpadding="0" cellspacing="0" class="table table-striped">
25
	<tr>
28
	<tr>
26
			<th><?php echo $this->Paginator->sort('app_id'); ?></th>
29
			<th><?php echo $this->Paginator->sort('app_id'); ?></th>
27
			<th><?php echo $this->Paginator->sort('app_name'); ?></th>
30
			<th><?php echo $this->Paginator->sort('app_name'); ?></th>
28
			<th><?php echo $this->Paginator->sort('count'); ?></th>
31
			<th><?php echo $this->Paginator->sort('clicks'); ?></th>
29
			<th><?php echo $this->Paginator->sort('approved'); ?></th>
32
			<th><?php echo $this->Paginator->sort('approved'); ?></th>
30
			<th><?php echo $this->Paginator->sort('conversion_percentage'); ?></th> 
33
			<th><?php echo $this->Paginator->sort('conversion_percentage'); ?></th> 
31
		
34
		
32
	</tr>
35
	</tr>
33
 
36