Subversion Repositories SmartDukaan

Rev

Rev 16583 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16549 anikendra 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-3">
4
			<?php echo $this->Element('adminactions');?>
5
		</div>
6
		<div class="col-lg-9">
7
			<?php echo $this->Form->create('AppOffer'); ?>
8
				<fieldset>
9
					<legend><?php echo __('Admin Edit App Offer'); ?></legend>
10
				<?php
11
					echo $this->Form->input('id');
12
					echo $this->Form->input('affiliate_id',array('options'=>$affiliate_ids));
13
					//echo $this->Form->input('affiliate_app_id',array('type'=>'text'));
14
					// echo $this->Form->input('startDate');
15
					// echo $this->Form->input('endDate');
16
					echo $this->Form->input('affiliate_offer_id',array('type'=>'text'));
17
					echo $this->Form->input('app_name');
18
					echo $this->Form->input('downloads');
19
					echo $this->Form->input('ratings');
20
					echo $this->Form->input('retailer_tagline');
21
					echo $this->Form->input('customer_tagline');
22
					echo $this->Form->input('offer_price');
23
					echo $this->Form->input('user_payout');
24
					echo $this->Form->input('override_payout');
25
					echo $this->Form->input('overriden_payout');
26
					echo $this->Form->input('package_name');					
27
					echo $this->Form->input('image_url');
28
					echo $this->Form->input('description');
29
					echo $this->Form->input('shortDescription');
30
					echo $this->Form->input('longDescription');
31
					echo $this->Form->input('link');
32
					echo $this->Form->input('offer_active');
33
					echo $this->Form->input('offerCategory');
34
					echo $this->Form->input('priority');
35
					echo $this->Form->input('show');
36
					echo $this->Form->input('promoImage');
37
				?>
38
				</fieldset>
39
			<?php echo $this->Form->end(__('Submit')); ?>
40
		</div>			
41
	</div>
42
</div>