summaryrefslogtreecommitdiff
path: root/protected/views/user/index.php
blob: 8c1105b56f2df61570dc85a5cd75738a1cbf44b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
$this->breadcrumbs=array(
	'Users',
);

$this->menu=array(
	array('label'=>'Create User', 'url'=>array('create')),
	array('label'=>'Manage User', 'url'=>array('admin')),
);
?>

<h1>Users</h1>

<?php $this->widget('zii.widgets.CListView', array(
	'dataProvider'=>$dataProvider,
	'itemView'=>'_view',
)); ?>