Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="agents form">
<?php echo $this->Form->create('Agent'); ?>
        <fieldset>
                <legend><?php echo __('Admin Add Agent'); ?></legend>
        <?php
                echo $this->Form->input('name');
                echo $this->Form->input('email');
                echo $this->Form->input('password');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Html->link(__('List Agents'), array('action' => 'index')); ?></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>
                <li><?php echo $this->Html->link(__('List Play Store Links'), array('controller' => 'play_store_links', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Play Store Link'), array('controller' => 'play_store_links', 'action' => 'add')); ?> </li>
        </ul>
</div>