diff options
| author | Tristan Zur <tzur@ccwn.org> | 2012-05-15 21:34:54 +0200 |
|---|---|---|
| committer | Tristan Zur <tzur@ccwn.org> | 2012-05-15 21:34:54 +0200 |
| commit | 1c57e4d02c914cb83d13ef919179f9cb73b5fbbe (patch) | |
| tree | 2d987f9905432d5fecd918591c581365276c0f85 /protected/views/myVeranstaltung/index.php | |
| parent | 94bb97f7b574ad8557d568a2ef1288dae3b4e9c8 (diff) | |
- Initiale Verein-Veranstaltungsverwaltung
- components/Html ergänzt für Anzeige der Einheiten-Dropdown Box
- Logo-Upload für Admins
- AngebotVerein mit Autocomplete und "Einheiten-Tausch"
Diffstat (limited to '')
| -rw-r--r-- | protected/views/myVeranstaltung/index.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/protected/views/myVeranstaltung/index.php b/protected/views/myVeranstaltung/index.php new file mode 100644 index 0000000..6ff8a23 --- /dev/null +++ b/protected/views/myVeranstaltung/index.php @@ -0,0 +1,17 @@ +<?php +$this->breadcrumbs=array( + 'Veranstaltungs', +); + +$this->menu=array( + array('label'=>'Create Veranstaltung', 'url'=>array('create')), + array('label'=>'Manage Veranstaltung', 'url'=>array('admin')), +); +?> + +<h1>Veranstaltungs</h1> + +<?php $this->widget('zii.widgets.CListView', array( + 'dataProvider'=>$dataProvider, + 'itemView'=>'_view', +)); ?> |
