2009-07-02 18:11:22 -07:00
|
|
|
<div class="industries form">
|
|
|
|
|
<?php echo $form->create('Industry');?>
|
|
|
|
|
<fieldset>
|
|
|
|
|
<legend><?php __('Add Industry');?></legend>
|
|
|
|
|
<?php
|
|
|
|
|
echo $form->input('name');
|
2009-07-06 19:11:10 -07:00
|
|
|
echo $form->input('parent_id', array('empty' => 'None'));
|
|
|
|
|
?>
|
2009-07-02 18:11:22 -07:00
|
|
|
</fieldset>
|
|
|
|
|
<?php echo $form->end('Submit');?>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="actions">
|
|
|
|
|
<ul>
|
|
|
|
|
<li><?php echo $html->link(__('List Industries', true), array('action'=>'index'));?></li>
|
|
|
|
|
<li><?php echo $html->link(__('List Industries', true), array('controller'=> 'industries', 'action'=>'index')); ?> </li>
|
|
|
|
|
<li><?php echo $html->link(__('New Parent Industry', true), array('controller'=> 'industries', '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>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
2009-07-06 19:11:10 -07:00
|
|
|
|