22 lines
715 B
PHP
Executable file
22 lines
715 B
PHP
Executable file
<div class="boxes form">
|
|
<?php echo $form->create('Box');?>
|
|
<fieldset>
|
|
<legend><?php __('Add Box');?></legend>
|
|
<?php
|
|
echo $form->input('shipment_id');
|
|
echo $form->input('length');
|
|
echo $form->input('width');
|
|
echo $form->input('height');
|
|
echo $form->input('weight');
|
|
?>
|
|
</fieldset>
|
|
<?php echo $form->end('Submit');?>
|
|
</div>
|
|
<div class="actions">
|
|
<ul>
|
|
<li><?php echo $html->link(__('List Boxes', 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>
|
|
</ul>
|
|
</div>
|