beginWidget('CActiveForm', array(
'action'=>Yii::app()->createUrl($this->route),
'method'=>'get',
)); ?>
label($model,'id'); ?>
textField($model,'id'); ?>
label($model,'verein_id'); ?>
dropDownList($model, 'verein_id', CHtml::listData(Verein::model()->findAll(), 'id', 'name'), array("empty"=>"")); ?>
label($model,'titel'); ?>
textField($model,'titel',array('size'=>60,'maxlength'=>100)); ?>
label($model,'startzeit'); ?>
textField($model,'startzeit'); ?>
label($model,'endzeit'); ?>
textField($model,'endzeit'); ?>
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="Bühne"')), 'id', 'name'), array("empty"=>"")); ?>
label($model,'published'); ?>
checkbox($model,'published'); ?>
endWidget(); ?>