Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15219 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('call_disposition');
15
		echo $this->Form->input('disposition_description');
16
	?>
17
	</fieldset>
18
<?php echo $this->Form->end(__('Submit')); ?>
19
</div>
20
<div class="actions">
21
	<h3><?php echo __('Actions'); ?></h3>
22
	<ul>
23
 
24
		<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Callhistory.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Callhistory.id'))); ?></li>
25
		<li><?php echo $this->Html->link(__('List Callhistories'), array('action' => 'index')); ?></li>
26
		<li><?php echo $this->Html->link(__('List Retailers'), array('controller' => 'retailers', 'action' => 'index')); ?> </li>
27
		<li><?php echo $this->Html->link(__('New Retailer'), array('controller' => 'retailers', 'action' => 'add')); ?> </li>
28
		<li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li>
29
		<li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li>
30
	</ul>
31
</div>