blob: 46f088e81c5dcdad73d96fea3402de37ca4b3318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
$this->breadcrumbs=array(
'Vereine'=>array('index'),
'Verein erstellen',
);
$this->menu=array(
array('label'=>'Vereine verwalten', 'url'=>array('index'))
);
?>
<h1>Verein erstellen</h1>
<?php echo $this->renderPartial('_form', array('model'=>$model, 'standorte'=>$standorte,'slugs'=>$slugs)); ?>
|