Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="appmasters form">
<?php echo $this->Form->create('Appmaster'); ?>
        <fieldset>
                <legend><?php echo __('Edit Appmaster'); ?></legend>
        <?php
                echo $this->Form->input('id');
                echo $this->Form->input('app_name');
                echo $this->Form->input('package_name');
                echo $this->Form->input('os_name');
                echo $this->Form->input('shortDescription');
                echo $this->Form->input('longDescription');
                echo $this->Form->input('customerOneLiner');
                echo $this->Form->input('retailerOneLiner');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <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>
                <li><?php echo $this->Html->link(__('List Appmasters'), array('action' => 'index')); ?></li>
                <li><?php echo $this->Html->link(__('List App Offers'), array('controller' => 'app_offers', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New App Offer'), array('controller' => 'app_offers', 'action' => 'add')); ?> </li>
        </ul>
</div>