Incam_PROFIND_Web/www/protected/views/empresa/admin.php
roberto 1e044b6498 Subida inicial.
Funciona:
- Usuario
- Empresa

git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@2 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
2012-09-20 19:38:42 +00:00

63 lines
1.3 KiB
PHP

<?php
/* @var $this EmpresaController */
/* @var $model Empresa */
$this->breadcrumbs=array(
'Empresas'=>array('index'),
'Manage',
);
$this->menu=array(
array('label'=>'List Empresa', 'url'=>array('index')),
array('label'=>'Create Empresa', 'url'=>array('create')),
);
Yii::app()->clientScript->registerScript('search', "
$('.search-button').click(function(){
$('.search-form').toggle();
return false;
});
$('.search-form form').submit(function(){
$.fn.yiiGridView.update('empresa-grid', {
data: $(this).serialize()
});
return false;
});
");
?>
<h1>Manage Empresas</h1>
<p>
You may optionally enter a comparison operator (<b>&lt;</b>, <b>&lt;=</b>, <b>&gt;</b>, <b>&gt;=</b>, <b>&lt;&gt;</b>
or <b>=</b>) at the beginning of each of your search values to specify how the comparison should be done.
</p>
<?php echo CHtml::link('Advanced Search','#',array('class'=>'search-button')); ?>
<div class="search-form" style="display:none">
<?php $this->renderPartial('_search',array(
'model'=>$model,
)); ?>
</div><!-- search-form -->
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'empresa-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'id',
'cif',
'nombre',
'email',
'pagina_web',
'empleados',
/*
'direccion',
'descripcion',
*/
array(
'class'=>'CButtonColumn',
),
),
)); ?>