cmc-sales/app/views/freight_services/edit.ctp
2013-03-23 16:25:52 +11:00

21 lines
959 B
PHP
Executable file

<div class="freightServices form">
<?php echo $form->create('FreightService');?>
<fieldset>
<legend><?php __('Edit FreightService');?></legend>
<?php
echo $form->input('id');
echo $form->input('freight_forwarder_id');
echo $form->input('name');
?>
</fieldset>
<?php echo $form->end('Submit');?>
</div>
<div class="actions">
<ul>
<li><?php echo $html->link(__('Delete', true), array('action' => 'delete', $form->value('FreightService.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('FreightService.id'))); ?></li>
<li><?php echo $html->link(__('List FreightServices', true), array('action' => 'index'));?></li>
<li><?php echo $html->link(__('List Freight Forwarders', true), array('controller' => 'freight_forwarders', 'action' => 'index')); ?> </li>
<li><?php echo $html->link(__('New Freight Forwarder', true), array('controller' => 'freight_forwarders', 'action' => 'add')); ?> </li>
</ul>
</div>