Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15537 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 __('Last Fetch Time'); ?></dt>
45
		<dd>
46
			<?php echo h($callhistory['Callhistory']['last_fetch_time']); ?>
47
			&nbsp;
48
		</dd>
49
		<dt><?php echo __('Call Disposition'); ?></dt>
50
		<dd>
51
			<?php echo h($callhistory['Callhistory']['call_disposition']); ?>
52
			&nbsp;
53
		</dd>
54
		<dt><?php echo __('Disposition Description'); ?></dt>
55
		<dd>
56
			<?php echo h($callhistory['Callhistory']['disposition_description']); ?>
57
			&nbsp;
58
		</dd>
59
		<dt><?php echo __('Disposition Comments'); ?></dt>
60
		<dd>
61
			<?php echo h($callhistory['Callhistory']['disposition_comments']); ?>
62
			&nbsp;
63
		</dd>
64
		<dt><?php echo __('Created'); ?></dt>
65
		<dd>
66
			<?php echo h($callhistory['Callhistory']['created']); ?>
67
			&nbsp;
68
		</dd>
69
	</dl>
70
</div>
71
<div class="actions">
72
	<h3><?php echo __('Actions'); ?></h3>
73
	<ul>
74
		<li><?php echo $this->Html->link(__('Edit Callhistory'), array('action' => 'edit', $callhistory['Callhistory']['id'])); ?> </li>
75
		<li><?php echo $this->Form->postLink(__('Delete Callhistory'), array('action' => 'delete', $callhistory['Callhistory']['id']), array(), __('Are you sure you want to delete # %s?', $callhistory['Callhistory']['id'])); ?> </li>
76
		<li><?php echo $this->Html->link(__('List Callhistories'), array('action' => 'index')); ?> </li>
77
		<li><?php echo $this->Html->link(__('New Callhistory'), array('action' => 'add')); ?> </li>
78
		<li><?php echo $this->Html->link(__('List Retailers'), array('controller' => 'retailers', 'action' => 'index')); ?> </li>
79
		<li><?php echo $this->Html->link(__('New Retailer'), array('controller' => 'retailers', 'action' => 'add')); ?> </li>
80
		<li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
81
		<li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
82
	</ul>
83
</div>