Blame | Last modification | View Log | RSS feed
<div class="calls form"><?php echo $this->Form->create('Call'); ?><fieldset><legend><?php echo __('Edit Call'); ?></legend><?phpecho $this->Form->input('id');echo $this->Form->input('retailer_id');echo $this->Form->input('agent_id');echo $this->Form->input('status');echo $this->Form->input('callduration');?></fieldset><?php echo $this->Form->end(__('Submit')); ?></div><div class="actions"><h3><?php echo __('Actions'); ?></h3><ul><li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Call.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Call.id'))); ?></li><li><?php echo $this->Html->link(__('List Calls'), array('action' => 'index')); ?></li><li><?php echo $this->Html->link(__('List Retailers'), array('controller' => 'retailers', 'action' => 'index')); ?> </li><li><?php echo $this->Html->link(__('New Retailer'), array('controller' => 'retailers', 'action' => 'add')); ?> </li><li><?php echo $this->Html->link(__('List Agents'), array('controller' => 'agents', 'action' => 'index')); ?> </li><li><?php echo $this->Html->link(__('New Agent'), array('controller' => 'agents', 'action' => 'add')); ?> </li><li><?php echo $this->Html->link(__('List Play Store Links'), array('controller' => 'play_store_links', 'action' => 'index')); ?> </li><li><?php echo $this->Html->link(__('New Play Store Link'), array('controller' => 'play_store_links', 'action' => 'add')); ?> </li></ul></div>