<?php/** * This is the template for generating the form view for crud. * The following variables are available in this template: * - $ID: the primary key name * - $modelClass: the model class name * - $columns: a list of column schema objects */?><divclass="wide form"><?phpecho"<?php \$form=\$this->beginWidget('CActiveForm', array( 'action'=>Yii::app()->createUrl(\$this->route), 'method'=>'get',)); ?>\n";?><?phpforeach($columnsas$column):?><?php$field=$this->generateInputField($modelClass,$column);if(strpos($field,'password')!==false)continue;?><divclass="row"><?phpecho"<?php echo \$form->label(\$model,'{$column->name}'); ?>\n";?><?phpecho"<?php echo ".$this->generateActiveField($modelClass,$column)."; ?>\n";?></div><?phpendforeach;?><divclass="row buttons"><?phpecho"<?php echo CHtml::submitButton('Search'); ?>\n";?></div><?phpecho"<?php \$this->endWidget(); ?>\n";?></div><!-- search-form -->