2010-07-07 23:18:04 -07:00
|
|
|
<div class="documents form">
|
|
|
|
|
<?php echo $form->create('Document');?>
|
|
|
|
|
<fieldset>
|
|
|
|
|
<legend><?php __('Edit Document');?></legend>
|
|
|
|
|
<?php
|
|
|
|
|
echo $form->input('id');
|
|
|
|
|
echo $form->input('user_id');
|
|
|
|
|
?>
|
|
|
|
|
</fieldset>
|
|
|
|
|
<?php echo $form->end('Submit');?>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="actions">
|
|
|
|
|
<ul>
|
|
|
|
|
<li><?php echo $html->link(__('Delete', true), array('action' => 'delete', $form->value('Document.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Document.id'))); ?></li>
|
|
|
|
|
<li><?php echo $html->link(__('List Documents', true), array('action' => 'index'));?></li>
|
|
|
|
|
<li><?php echo $html->link(__('List Users', true), array('controller' => 'users', 'action' => 'index')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('New User', true), array('controller' => 'users', 'action' => 'add')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('List Invoices', true), array('controller' => 'invoices', 'action' => 'index')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('New Invoice', true), array('controller' => 'invoices', 'action' => 'add')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('List Quotes', true), array('controller' => 'quotes', 'action' => 'index')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('New Quote', true), array('controller' => 'quotes', 'action' => 'add')); ?> </li>
|
2011-05-15 23:13:21 -07:00
|
|
|
<li><?php echo $html->link(__('List Purchase Orders', true), array('controller' => 'purchase_orders', 'action' => 'index')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('New Purchase Order', true), array('controller' => 'purchase_orders', 'action' => 'add')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('List Line Items', true), array('controller' => 'line_items', 'action' => 'index')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('New Line Item', true), array('controller' => 'line_items', 'action' => 'add')); ?> </li>
|
2010-07-07 23:18:04 -07:00
|
|
|
</ul>
|
|
|
|
|
</div>
|