2009-07-02 18:11:22 -07:00
|
|
|
<div class="industries form">
|
|
|
|
|
<?php echo $form->create('Industry');?>
|
|
|
|
|
<fieldset>
|
|
|
|
|
<legend><?php __('Edit Industry');?></legend>
|
|
|
|
|
<?php
|
|
|
|
|
echo $form->input('id');
|
|
|
|
|
echo $form->input('name');
|
2009-07-09 00:09:59 -07:00
|
|
|
echo $form->input('parent_id', array('type'=>'hidden', 'value' => $this->data['Industry']['parent_id']));
|
2009-07-02 18:11:22 -07:00
|
|
|
?>
|
|
|
|
|
</fieldset>
|
|
|
|
|
<?php echo $form->end('Submit');?>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="actions">
|
|
|
|
|
<ul>
|
|
|
|
|
<li><?php echo $html->link(__('Delete', true), array('action'=>'delete', $form->value('Industry.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Industry.id'))); ?></li>
|
|
|
|
|
<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-09 00:09:59 -07:00
|
|
|
|