Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15537 manas 1
<div class="callhistories form">
2
<?php echo $this->Form->create('Callhistory'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Edit Callhistory'); ?></legend>
5
	<?php
6
		echo $this->Form->input('id');
7
		echo $this->Form->input('retailer_id');
8
		echo $this->Form->input('agent_id');
9
		echo $this->Form->input('mobile_number');
10
		echo $this->Form->input('call_type');
11
		echo $this->Form->input('sms_verified');
12
		echo $this->Form->input('call_time');
13
		echo $this->Form->input('duration_sec');
14
		echo $this->Form->input('last_fetch_time');
15
		echo $this->Form->input('call_disposition');
16
		echo $this->Form->input('disposition_description');
17
		echo $this->Form->input('disposition_comments');
18
	?>
19
	</fieldset>
20
<?php echo $this->Form->end(__('Submit')); ?>
21
</div>
22
<div class="actions">
23
	<h3><?php echo __('Actions'); ?></h3>
24
	<ul>
25
 
26
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Callhistory.id')), array(), __('Are you sure you want to delete # %s?', $this->Form->value('Callhistory.id'))); ?></li>
27
		<li><?php echo $this->Html->link(__('List Callhistories'), array('action' => 'index')); ?></li>
28
		<li><?php echo $this->Html->link(__('List Retailers'), array('controller' => 'retailers', 'action' => 'index')); ?> </li>
29
		<li><?php echo $this->Html->link(__('New Retailer'), array('controller' => 'retailers', 'action' => 'add')); ?> </li>
30
		<li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
31
		<li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
32
	</ul>
33
</div>