| 16614 |
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">
|
| 16755 |
anikendra |
7 |
<a href="<?php echo $base_url;?>admin/app_offers/update/<?php echo $this->request->data['Appmaster']['id'];?>">Edit Offer</a>
|
| 16614 |
anikendra |
8 |
<?php echo $this->Form->create('Appmaster'); ?>
|
|
|
9 |
<fieldset>
|
|
|
10 |
<legend><?php echo __('Admin Edit Appmaster'); ?></legend>
|
|
|
11 |
<?php
|
|
|
12 |
echo $this->Form->input('id');
|
|
|
13 |
echo $this->Form->input('app_name');
|
|
|
14 |
echo $this->Form->input('package_name',array('disabled'=>'disabled'));
|
|
|
15 |
echo $this->Form->input('os_name',array('disabled'=>'disabled'));
|
|
|
16 |
echo $this->Form->input('shortDescription');
|
|
|
17 |
echo $this->Form->input('longDescription');
|
|
|
18 |
echo $this->Form->input('customerOneLiner');
|
|
|
19 |
echo $this->Form->input('retailerOneLiner');
|
| 16729 |
anikendra |
20 |
echo $this->Form->input('showApp',array('type'=>'checkbox'));
|
| 16981 |
anikendra |
21 |
echo $this->Form->input('rank',array('type'=>'number'));
|
| 16614 |
anikendra |
22 |
?>
|
|
|
23 |
</fieldset>
|
|
|
24 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
25 |
</div>
|
|
|
26 |
</div>
|
|
|
27 |
</div>
|
|
|
28 |
</div>
|