summaryrefslogtreecommitdiff
path: root/protected/views/myVeranstaltung/view.php
diff options
context:
space:
mode:
Diffstat (limited to 'protected/views/myVeranstaltung/view.php')
-rw-r--r--protected/views/myVeranstaltung/view.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/protected/views/myVeranstaltung/view.php b/protected/views/myVeranstaltung/view.php
new file mode 100644
index 0000000..12ac308
--- /dev/null
+++ b/protected/views/myVeranstaltung/view.php
@@ -0,0 +1,30 @@
+<?php
+$this->breadcrumbs=array(
+ 'Veranstaltungs'=>array('index'),
+ $model->id,
+);
+
+$this->menu=array(
+ array('label'=>'List Veranstaltung', 'url'=>array('index')),
+ array('label'=>'Create Veranstaltung', 'url'=>array('create')),
+ array('label'=>'Update Veranstaltung', 'url'=>array('update', 'id'=>$model->id)),
+ array('label'=>'Delete Veranstaltung', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')),
+ array('label'=>'Manage Veranstaltung', 'url'=>array('admin')),
+);
+?>
+
+<h1>View Veranstaltung #<?php echo $model->id; ?></h1>
+
+<?php $this->widget('zii.widgets.CDetailView', array(
+ 'data'=>$model,
+ 'attributes'=>array(
+ 'id',
+ 'verein_id',
+ 'titel',
+ 'startzeit',
+ 'endzeit',
+ 'beschreibung',
+ 'standort_id',
+ 'published',
+ ),
+)); ?>