24 lines
944 B
PHP
Executable file
24 lines
944 B
PHP
Executable file
<div class="boxes form">
|
|
<?php echo $form->create('Box');?>
|
|
<fieldset>
|
|
<legend><?php __('Edit Box');?></legend>
|
|
<?php
|
|
echo $form->input('id');
|
|
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(__('Delete', true), array('action' => 'delete', $form->value('Box.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Box.id'))); ?></li>
|
|
<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>
|