cmc-sales/views/customers/tagindustries.ctp

15 lines
463 B
Plaintext
Raw Normal View History

2009-07-09 00:10:51 -07:00
<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');?>