blob: 54d31c4f861588b98380e02ff43b55287c2f81bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
$this->breadcrumbs=array(
'Vereine',
);
$this->pageTitle = 'Vereine anzeigen - ' . Yii::app()->name;
/*
$this->menu=array(
array('label' => 'Verein suchen', 'url' => array('search')),
);*/
?>
<h2>Vereine</h2>
<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$model->listPublic(),
'itemView'=>'_short',
'pager'=>array('footer'=>'', 'header'=>''),
/*'sortableAttributes'=>array(
'name',
/*'create_time'=>'Post Time',
),*/
));?>
|