Subversion Repositories SmartDukaan

Rev

Rev 16614 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
16614 anikendra 1
<div class="appmasters form">
2
<?php echo $this->Form->create('Appmaster'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Add Appmaster'); ?></legend>
5
	<?php
6
		echo $this->Form->input('app_name');
7
		echo $this->Form->input('package_name');
8
		echo $this->Form->input('os_name');
9
		echo $this->Form->input('shortDescription');
10
		echo $this->Form->input('longDescription');
11
		echo $this->Form->input('customerOneLiner');
12
		echo $this->Form->input('retailerOneLiner');
16981 anikendra 13
		echo $this->Form->input('showApp',array('type'=>'checkbox'));
14
		echo $this->Form->input('rank',array('type'=>'number'));
16614 anikendra 15
	?>
16
	</fieldset>
17
<?php echo $this->Form->end(__('Submit')); ?>
18
</div>
19
<div class="actions">
20
	<h3><?php echo __('Actions'); ?></h3>
21
	<ul>
22
 
23
		<li><?php echo $this->Html->link(__('List Appmasters'), array('action' => 'index')); ?></li>
24
		<li><?php echo $this->Html->link(__('List App Offers'), array('controller' => 'app_offers', 'action' => 'index')); ?> </li>
25
		<li><?php echo $this->Html->link(__('New App Offer'), array('controller' => 'app_offers', 'action' => 'add')); ?> </li>
26
	</ul>
27
</div>