Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15073 manas 1
<div class="agentRoles view">
2
<h2><?php echo __('Agent Role'); ?></h2>
3
	<dl>
4
		<dt><?php echo __('Id'); ?></dt>
5
		<dd>
6
			<?php echo h($agentRole['AgentRole']['id']); ?>
7
			&nbsp;
8
		</dd>
9
		<dt><?php echo __('Agent'); ?></dt>
10
		<dd>
11
			<?php echo $this->Html->link($agentRole['Agent']['name'], array('controller' => 'agents', 'action' => 'view', $agentRole['Agent']['id'])); ?>
12
			&nbsp;
13
		</dd>
14
		<dt><?php echo __('Role'); ?></dt>
15
		<dd>
16
			<?php echo h($agentRole['AgentRole']['role']); ?>
17
			&nbsp;
18
		</dd>
19
		<dt><?php echo __('Created'); ?></dt>
20
		<dd>
21
			<?php echo h($agentRole['AgentRole']['created']); ?>
22
			&nbsp;
23
		</dd>
24
	</dl>
25
</div>
26
<div class="actions">
27
	<h3><?php echo __('Actions'); ?></h3>
28
	<ul>
29
		<li><?php echo $this->Html->link(__('Edit Agent Role'), array('action' => 'edit', $agentRole['AgentRole']['id'])); ?> </li>
30
		<li><?php echo $this->Form->postLink(__('Delete Agent Role'), array('action' => 'delete', $agentRole['AgentRole']['id']), null, __('Are you sure you want to delete # %s?', $agentRole['AgentRole']['id'])); ?> </li>
31
		<li><?php echo $this->Html->link(__('List Agent Roles'), array('action' => 'index')); ?> </li>
32
		<li><?php echo $this->Html->link(__('New Agent Role'), array('action' => 'add')); ?> </li>
33
		<li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
34
		<li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
35
	</ul>
36
</div>