Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="agentRoles form">
<?php echo $this->Form->create('AgentRole'); ?>
        <fieldset>
                <legend><?php echo __('Add Agent Role'); ?></legend>
        <?php
                echo $this->Form->input('agent_id');
                echo $this->Form->input('role');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Html->link(__('List Agent Roles'), 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>
        </ul>
</div>