blob: cfdd6e0fd77f3fb1a910475a33608bc8dc5a7c68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
$this->breadcrumbs=array(
'Vereine',
);
$this->menu=array(
array('label'=>'Verein erstellen', 'url'=>array('create'),'visible'=>!Yii::app()->user->isGuest),
);
?>
<h2>Vereine</h2>
<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$model->search(),
'itemView'=>'_short', // refers to the partial view named '_post'
'sortableAttributes'=>array(
'name',
/*'create_time'=>'Post Time',*/
),
));?>
|