39 lines
2.4 KiB
Plaintext
39 lines
2.4 KiB
Plaintext
|
|
<div class="enquiries form">
|
||
|
|
<?php echo $form->create('Enquiry');?>
|
||
|
|
<fieldset>
|
||
|
|
<legend><?php __('Add Enquiry');?></legend>
|
||
|
|
<?php
|
||
|
|
echo $form->input('user_id');
|
||
|
|
echo $form->input('customer_id');
|
||
|
|
echo $form->input('contact_id');
|
||
|
|
echo $form->input('state_id');
|
||
|
|
echo $form->input('country_id');
|
||
|
|
echo $form->input('principle_id');
|
||
|
|
echo $form->input('status_id');
|
||
|
|
echo $form->input('comments');
|
||
|
|
?>
|
||
|
|
</fieldset>
|
||
|
|
<?php echo $form->end('Submit');?>
|
||
|
|
</div>
|
||
|
|
<div class="actions">
|
||
|
|
<ul>
|
||
|
|
<li><?php echo $html->link(__('List Enquiries', 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 Customers', true), array('controller'=> 'customers', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Customer', true), array('controller'=> 'customers', 'action'=>'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Contacts', true), array('controller'=> 'contacts', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Contact', true), array('controller'=> 'contacts', 'action'=>'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List States', true), array('controller'=> 'states', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New State', true), array('controller'=> 'states', 'action'=>'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Countries', true), array('controller'=> 'countries', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Country', true), array('controller'=> 'countries', 'action'=>'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Principles', true), array('controller'=> 'principles', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Principle', true), array('controller'=> 'principles', 'action'=>'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Statuses', true), array('controller'=> 'statuses', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Status', true), array('controller'=> 'statuses', '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>
|
||
|
|
</ul>
|
||
|
|
</div>
|