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