20 lines
907 B
PHP
Executable file
20 lines
907 B
PHP
Executable file
<div class="freightForwarders form">
|
|
<?php echo $form->create('FreightForwarder');?>
|
|
<fieldset>
|
|
<legend><?php __('Add FreightForwarder');?></legend>
|
|
<?php
|
|
echo $form->input('name');
|
|
?>
|
|
</fieldset>
|
|
<?php echo $form->end('Submit');?>
|
|
</div>
|
|
<div class="actions">
|
|
<ul>
|
|
<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>
|