Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="appOffers form">
<?php echo $this->Form->create('AppOffer'); ?>
        <fieldset>
                <legend><?php echo __('Add App Offer'); ?></legend>
        <?php
                echo $this->Form->input('affiliate_id');
                echo $this->Form->input('affiliate_app_id');
                echo $this->Form->input('startDate');
                echo $this->Form->input('endDate');
                echo $this->Form->input('affiliate_offer_id');
                echo $this->Form->input('offer_price');
                echo $this->Form->input('app_name');
                echo $this->Form->input('image_url');
                echo $this->Form->input('description');
                echo $this->Form->input('link');
                echo $this->Form->input('offer_active');
                echo $this->Form->input('action');
                echo $this->Form->input('priority');
                echo $this->Form->input('show');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Html->link(__('List App Offers'), array('action' => 'index')); ?></li>
                <li><?php echo $this->Html->link(__('List App Affiliates'), array('controller' => 'app_affiliates', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New App Affiliate'), array('controller' => 'app_affiliates', 'action' => 'add')); ?> </li>
        </ul>
</div>