diff options
Diffstat (limited to 'protected/views/veranstaltung/update.php')
| -rw-r--r-- | protected/views/veranstaltung/update.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/protected/views/veranstaltung/update.php b/protected/views/veranstaltung/update.php new file mode 100644 index 0000000..8813aae --- /dev/null +++ b/protected/views/veranstaltung/update.php @@ -0,0 +1,18 @@ +<?php +$this->breadcrumbs=array( + 'Veranstaltungen'=>array('index'), + '"'.$model->titel.'" bearbeiten' +); + +$this->menu=array( + array('label'=>'Veranstaltungen', 'url'=>array('index')), + array('label'=>'Veranstaltung erstellen', 'url'=>array('create')), + array('label'=>'Veranstaltung anzeigen', 'url'=>array('view', 'id'=>$model->id)), +); +?> + +<h1>"<?php echo $model->titel; ?>" bearbeiten</h1> + +<?php echo $this->renderPartial('_form', array('model'=>$model, + 'vereine'=>$vereine, + 'standorte'=>$standorte)); ?>
\ No newline at end of file |
