| 15073 |
manas |
1 |
<div class="agentRoles form">
|
|
|
2 |
<?php echo $this->Form->create('AgentRole'); ?>
|
|
|
3 |
<fieldset>
|
|
|
4 |
<legend><?php echo __('Admin Add Agent Role'); ?></legend>
|
|
|
5 |
<?php
|
|
|
6 |
echo $this->Form->input('agent_id');
|
|
|
7 |
echo $this->Form->input('role');
|
|
|
8 |
?>
|
|
|
9 |
</fieldset>
|
|
|
10 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
11 |
</div>
|
|
|
12 |
<div class="actions">
|
|
|
13 |
<h3><?php echo __('Actions'); ?></h3>
|
|
|
14 |
<ul>
|
|
|
15 |
|
|
|
16 |
<li><?php echo $this->Html->link(__('List Agent Roles'), array('action' => 'index')); ?></li>
|
|
|
17 |
<li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
|
|
|
18 |
<li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
|
|
|
19 |
</ul>
|
|
|
20 |
</div>
|