blob: 6ff8a23b381dfc858680962b3d161519dcb75588 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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',
)); ?>
|