Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16773 manas 1
<div class="appTransactions form">
2
<?php echo $this->Form->create('AppTransaction'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Edit App Transaction'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('retailer_id');
8
		echo $this->Form->input('app_id');
9
		echo $this->Form->input('app_name');
10
		echo $this->Form->input('cashback_status');
11
		echo $this->Form->input('redirect_url');
12
		echo $this->Form->input('cash_back_description');
13
		echo $this->Form->input('payout_status');
14
		echo $this->Form->input('overridenCashBack');
15
		echo $this->Form->input('isCashBackOverriden');
16
		echo $this->Form->input('transaction_time');
17
		echo $this->Form->input('payout_time');
18
		echo $this->Form->input('offer_price');
19
		echo $this->Form->input('payout_amount');
20
		echo $this->Form->input('user_payout');
21
		echo $this->Form->input('payout_description');
22
	?>
23
	</fieldset>
24
<?php echo $this->Form->end(__('Submit')); ?>
25
</div>
26
<div class="actions">
27
	<h3><?php echo __('Actions'); ?></h3>
28
	<ul>
29
 
30
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('AppTransaction.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('AppTransaction.id'))); ?></li>
31
		<li><?php echo $this->Html->link(__('List App Transactions'), array('action' => 'index')); ?></li>
32
	</ul>
33
</div>