15 lines
463 B
Plaintext
15 lines
463 B
Plaintext
|
|
|
||
|
|
<div class="customers form">
|
||
|
|
<?php echo $form->create('Customer');?>
|
||
|
|
<fieldset>
|
||
|
|
<legend><?php __('Add or Remove Industry Tags');?></legend>
|
||
|
|
<?php
|
||
|
|
echo $form->input('id');
|
||
|
|
echo $form->input('name', array('type'=>'hidden'));
|
||
|
|
echo $form->input('abn', array('type'=>'hidden'));
|
||
|
|
echo $form->input('Industry.Industry', array('multiple'=>'checkbox', 'showParents'=> false, 'options' => $industries));
|
||
|
|
?>
|
||
|
|
</fieldset>
|
||
|
|
<?php echo $form->end('Submit');?>
|
||
|
|
|