Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="playStoreLinks form">
<?php echo $this->Form->create('PlayStoreLink'); ?>
        <fieldset>
                <legend><?php echo __('Admin Add Play Store Link'); ?></legend>
        <?php
                echo $this->Form->input('agent_id');
                echo $this->Form->input('retailer_id');
                echo $this->Form->input('referralcode');
                echo $this->Form->input('url');
                echo $this->Form->input('call_id');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Html->link(__('List Play Store Links'), array('action' => 'index')); ?></li>
                <li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Calls'), array('controller' => 'calls', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Call'), array('controller' => 'calls', 'action' => 'add')); ?> </li>
        </ul>
</div>