19 lines
708 B
Plaintext
19 lines
708 B
Plaintext
|
|
<div class="freightServices form">
|
||
|
|
<?php echo $form->create('FreightService');?>
|
||
|
|
<fieldset>
|
||
|
|
<legend><?php __('Add FreightService');?></legend>
|
||
|
|
<?php
|
||
|
|
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(__('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>
|