Subversion Repositories SmartDukaan

Rev

Rev 16549 | Details | Compare with Previous | 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 Add App Offer'); ?></legend>
10
				<?php
11
					echo $this->Form->input('affiliate_id',array('options'=>$affiliate_ids));
12
					echo $this->Form->input('affiliate_app_id',array('type'=>'text'));
13
					echo $this->Form->input('startDate');
14
					echo $this->Form->input('endDate');
15
					echo $this->Form->input('affiliate_offer_id',array('type'=>'text'));
16
					echo $this->Form->input('offer_price');
17
					echo $this->Form->input('app_name');
18
					echo $this->Form->input('image_url');
19
					echo $this->Form->input('description');
20
					echo $this->Form->input('link');
21
					echo $this->Form->input('offer_active');
22
					echo $this->Form->input('action');
17025 anikendra 23
					// echo $this->Form->input('priority');
16549 anikendra 24
					echo $this->Form->input('show');
25
				?>
26
				</fieldset>
27
			<?php echo $this->Form->end(__('Submit')); ?>
28
		</div>
29
	</div>
30
</div>