Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16591 anikendra 1
<div class="appOffers form">
2
<?php echo $this->Form->create('AppOffer'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Edit App Offer'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('affiliate_id');
8
		echo $this->Form->input('affiliate_app_id');
9
		echo $this->Form->input('startDate');
10
		echo $this->Form->input('endDate');
11
		echo $this->Form->input('affiliate_offer_id');
12
		echo $this->Form->input('offer_price');
13
		echo $this->Form->input('app_name');
14
		echo $this->Form->input('image_url');
15
		echo $this->Form->input('description');
16
		echo $this->Form->input('link');
17
		echo $this->Form->input('offer_active');
18
		echo $this->Form->input('action');
19
		echo $this->Form->input('priority');
20
		echo $this->Form->input('show');
21
	?>
22
	</fieldset>
23
<?php echo $this->Form->end(__('Submit')); ?>
24
</div>
25
<div class="actions">
26
	<h3><?php echo __('Actions'); ?></h3>
27
	<ul>
28
 
29
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('AppOffer.id')), array('confirm' => __('Are you sure you want to delete # %s?', $this->Form->value('AppOffer.id')))); ?></li>
30
		<li><?php echo $this->Html->link(__('List App Offers'), array('action' => 'index')); ?></li>
31
		<li><?php echo $this->Html->link(__('List App Affiliates'), array('controller' => 'app_affiliates', 'action' => 'index')); ?> </li>
32
		<li><?php echo $this->Html->link(__('New App Affiliate'), array('controller' => 'app_affiliates', 'action' => 'add')); ?> </li>
33
	</ul>
34
</div>