blob: ea42d4c24b844f648482d71518f3d735ed775214 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
$this->breadcrumbs=array(
'Veranstaltungen'=>array('index'),
'Veranstaltung erstellen',
);
$this->menu=array(
array('label'=>'Veranstaltungen', 'url'=>array('index')),
);
?>
<h1>Veranstaltung erstellen</h1>
<?php echo $this->renderPartial('_form', array('model'=>$model,
'vereine'=>$vereine,
'standorte'=>$standorte)); ?>
|