Subversion Repositories SmartDukaan

Rev

Details | 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 __('Edit Appmaster'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('app_name');
8
		echo $this->Form->input('package_name');
9
		echo $this->Form->input('os_name');
10
		echo $this->Form->input('shortDescription');
11
		echo $this->Form->input('longDescription');
12
		echo $this->Form->input('customerOneLiner');
13
		echo $this->Form->input('retailerOneLiner');
14
	?>
15
	</fieldset>
16
<?php echo $this->Form->end(__('Submit')); ?>
17
</div>
18
<div class="actions">
19
	<h3><?php echo __('Actions'); ?></h3>
20
	<ul>
21
 
22
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Appmaster.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Appmaster.id'))); ?></li>
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>