beginWidget('CActiveForm', array(
'action'=>Yii::app()->createUrl($this->route),
'method'=>'get',
)); ?>
label($model,'id'); ?>
textField($model,'id'); ?>
label($model,'name'); ?>
textField($model,'name',array('size'=>60,'maxlength'=>255)); ?>
label($model,'url'); ?>
textField($model,'url',array('size'=>60,'maxlength'=>255)); ?>
label($model,'email'); ?>
textField($model,'email',array('size'=>60,'maxlength'=>100)); ?>
label($model,'slug'); ?>
textField($model,'slug',array('size'=>60,'maxlength'=>100)); ?>
label($model,'kontaktdaten'); ?>
textArea($model,'kontaktdaten',array('rows'=>6, 'cols'=>50)); ?>
label($model,'beschreibung'); ?>
textArea($model,'beschreibung',array('rows'=>6, 'cols'=>50)); ?>
label($model,'standort_id'); ?>
dropDownList($model, 'standort_id', CHtml::listData(Standort::model()->findAll(array('condition'=>'type="Stand"')), 'id', 'name'), array("empty"=>"")); ?>
label($model,'published'); ?>
checkbox($model,'published'); ?>
endWidget(); ?>