diff options
| author | Tristan Zur <tzur@ccwn.org> | 2012-04-28 13:42:41 +0200 |
|---|---|---|
| committer | Tristan Zur <tzur@ccwn.org> | 2012-04-28 13:42:41 +0200 |
| commit | 2d4bddcbf7b816f86db6f308a4d11bc9787c1f99 (patch) | |
| tree | cb19c5a13d6fcf87c8a9a3eb5dbba4920ca1969f /protected/views/veranstaltung/create.php | |
| parent | c98745edd2c7b2f48bc3493c4dd9a061376c4720 (diff) | |
- Veranstaltungen CRUD Basisimplementierung
- Extension "CJuiDateTimePicker" hinzugefügt
- Modul "AuditTrail" hinzugefügt
Diffstat (limited to 'protected/views/veranstaltung/create.php')
| -rw-r--r-- | protected/views/veranstaltung/create.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/protected/views/veranstaltung/create.php b/protected/views/veranstaltung/create.php new file mode 100644 index 0000000..ea42d4c --- /dev/null +++ b/protected/views/veranstaltung/create.php @@ -0,0 +1,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)); ?>
\ No newline at end of file |
