Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15219 manas 1
<div class="callhistories view">
2
<h2><?php echo __('Callhistory'); ?></h2>
3
	<dl>
4
		<dt><?php echo __('Id'); ?></dt>
5
		<dd>
6
			<?php echo h($callhistory['Callhistory']['id']); ?>
7
			&nbsp;
8
		</dd>
9
		<dt><?php echo __('Retailer'); ?></dt>
10
		<dd>
11
			<?php echo $this->Html->link($callhistory['Retailer']['name'], array('controller' => 'retailers', 'action' => 'view', $callhistory['Retailer']['id'])); ?>
12
			&nbsp;
13
		</dd>
14
		<dt><?php echo __('Agent'); ?></dt>
15
		<dd>
16
			<?php echo $this->Html->link($callhistory['Agent']['name'], array('controller' => 'agents', 'action' => 'view', $callhistory['Agent']['id'])); ?>
17
			&nbsp;
18
		</dd>
19
		<dt><?php echo __('Mobile Number'); ?></dt>
20
		<dd>
21
			<?php echo h($callhistory['Callhistory']['mobile_number']); ?>
22
			&nbsp;
23
		</dd>
24
		<dt><?php echo __('Call Type'); ?></dt>
25
		<dd>
26
			<?php echo h($callhistory['Callhistory']['call_type']); ?>
27
			&nbsp;
28
		</dd>
29
		<dt><?php echo __('Sms Verified'); ?></dt>
30
		<dd>
31
			<?php echo h($callhistory['Callhistory']['sms_verified']); ?>
32
			&nbsp;
33
		</dd>
34
		<dt><?php echo __('Call Time'); ?></dt>
35
		<dd>
36
			<?php echo h($callhistory['Callhistory']['call_time']); ?>
37
			&nbsp;
38
		</dd>
39
		<dt><?php echo __('Duration Sec'); ?></dt>
40
		<dd>
41
			<?php echo h($callhistory['Callhistory']['duration_sec']); ?>
42
			&nbsp;
43
		</dd>
44
		<dt><?php echo __('Call Disposition'); ?></dt>
45
		<dd>
46
			<?php echo h($callhistory['Callhistory']['call_disposition']); ?>
47
			&nbsp;
48
		</dd>
49
		<dt><?php echo __('Disposition Description'); ?></dt>
50
		<dd>
51
			<?php echo h($callhistory['Callhistory']['disposition_description']); ?>
52
			&nbsp;
53
		</dd>
54
		<dt><?php echo __('Created'); ?></dt>
55
		<dd>
56
			<?php echo h($callhistory['Callhistory']['created']); ?>
57
			&nbsp;
58
		</dd>
59
	</dl>
60
</div>
61
<div class="actions">
62
	<h3><?php echo __('Actions'); ?></h3>
63
	<ul>
64
		<li><?php echo $this->Html->link(__('Edit Callhistory'), array('action' => 'edit', $callhistory['Callhistory']['id'])); ?> </li>
65
		<li><?php echo $this->Form->postLink(__('Delete Callhistory'), array('action' => 'delete', $callhistory['Callhistory']['id']), null, __('Are you sure you want to delete # %s?', $callhistory['Callhistory']['id'])); ?> </li>
66
		<li><?php echo $this->Html->link(__('List Callhistories'), array('action' => 'index')); ?> </li>
67
		<li><?php echo $this->Html->link(__('New Callhistory'), array('action' => 'add')); ?> </li>
68
		<li><?php echo $this->Html->link(__('List Retailers'), array('controller' => 'retailers', 'action' => 'index')); ?> </li>
69
		<li><?php echo $this->Html->link(__('New Retailer'), array('controller' => 'retailers', 'action' => 'add')); ?> </li>
70
		<li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
71
		<li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
72
	</ul>
73
</div>