This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
factuges_web/www/protected/views/usuario/index.php

21 lines
405 B
PHP
Raw Normal View History

<?php
/* @var $this UsuarioController */
/* @var $dataProvider CActiveDataProvider */
$this->breadcrumbs=array(
'Usuarios',
);
$this->menu=array(
array('label'=>'Create Usuario', 'url'=>array('create')),
array('label'=>'Manage Usuario', 'url'=>array('admin')),
);
?>
<h1>Usuarios</h1>
<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>'_view',
)); ?>