18 lines
332 B
PHP
18 lines
332 B
PHP
|
|
<?php
|
||
|
|
$this->breadcrumbs=array(
|
||
|
|
'Candidatos',
|
||
|
|
);
|
||
|
|
|
||
|
|
$this->menu=array(
|
||
|
|
array('label'=>'Create Candidato', 'url'=>array('create')),
|
||
|
|
array('label'=>'Manage Candidato', 'url'=>array('admin')),
|
||
|
|
);
|
||
|
|
?>
|
||
|
|
|
||
|
|
<h1>Candidatos</h1>
|
||
|
|
|
||
|
|
<?php $this->widget('zii.widgets.CListView', array(
|
||
|
|
'dataProvider'=>$dataProvider,
|
||
|
|
'itemView'=>'_view',
|
||
|
|
)); ?>
|