cmc-sales/views/freight_forwarders/edit.ctp
2012-06-17 16:35:54 +10:00

22 lines
1.1 KiB
PHP
Executable file

<div class="freightForwarders form">
<?php echo $form->create('FreightForwarder');?>
<fieldset>
<legend><?php __('Edit FreightForwarder');?></legend>
<?php
echo $form->input('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('FreightForwarder.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('FreightForwarder.id'))); ?></li>
<li><?php echo $html->link(__('List FreightForwarders', true), array('action' => 'index'));?></li>
<li><?php echo $html->link(__('List Shipments', true), array('controller' => 'shipments', 'action' => 'index')); ?> </li>
<li><?php echo $html->link(__('New Shipment', true), array('controller' => 'shipments', 'action' => 'add')); ?> </li>
<li><?php echo $html->link(__('List Freight Services', true), array('controller' => 'freight_services', 'action' => 'index')); ?> </li>
<li><?php echo $html->link(__('New Freight Service', true), array('controller' => 'freight_services', 'action' => 'add')); ?> </li>
</ul>
</div>