30 lines
1.5 KiB
Plaintext
30 lines
1.5 KiB
Plaintext
|
|
<div class="principles form">
|
||
|
|
<?php echo $form->create('Principle');?>
|
||
|
|
<fieldset>
|
||
|
|
<legend><?php __('Add Principle');?></legend>
|
||
|
|
<?php
|
||
|
|
echo $form->input('name');
|
||
|
|
echo $form->input('code');
|
||
|
|
echo $form->input('address');
|
||
|
|
echo $form->input('city');
|
||
|
|
echo $form->input('state');
|
||
|
|
echo $form->input('country_id');
|
||
|
|
echo $form->input('currency_id');
|
||
|
|
?>
|
||
|
|
</fieldset>
|
||
|
|
<?php echo $form->end('Submit');?>
|
||
|
|
</div>
|
||
|
|
<div class="actions">
|
||
|
|
<ul>
|
||
|
|
<li><?php echo $html->link(__('List Principles', true), array('action'=>'index'));?></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 Currencies', true), array('controller'=> 'currencies', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Currency', true), array('controller'=> 'currencies', 'action'=>'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Enquiries', true), array('controller'=> 'enquiries', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Enquiry', true), array('controller'=> 'enquiries', 'action'=>'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Products', true), array('controller'=> 'products', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Product', true), array('controller'=> 'products', 'action'=>'add')); ?> </li>
|
||
|
|
</ul>
|
||
|
|
</div>
|