Blame | Last modification | View Log | RSS feed
<div class="appTransactions form"><?php echo $this->Form->create('AppTransaction'); ?><fieldset><legend><?php echo __('Admin Edit App Transaction'); ?></legend><?phpecho $this->Form->input('id');echo $this->Form->input('retailer_id');echo $this->Form->input('app_id');echo $this->Form->input('app_name');echo $this->Form->input('cashback_status');echo $this->Form->input('redirect_url');echo $this->Form->input('cash_back_description');echo $this->Form->input('payout_status');echo $this->Form->input('overridenCashBack');echo $this->Form->input('isCashBackOverriden');echo $this->Form->input('transaction_time');echo $this->Form->input('payout_time');echo $this->Form->input('offer_price');echo $this->Form->input('payout_amount');echo $this->Form->input('user_payout');echo $this->Form->input('payout_description');?></fieldset><?php echo $this->Form->end(__('Submit')); ?></div><div class="actions"><h3><?php echo __('Actions'); ?></h3><ul><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><li><?php echo $this->Html->link(__('List App Transactions'), array('action' => 'index')); ?></li></ul></div>