<?php
$this->breadcrumbs=array(
	'Reporte Creditoses'=>array('index'),
	'Manage',
);

$this->menu=array(
	array('label'=>'List ReporteCreditos','url'=>array('index')),
	array('label'=>'Create ReporteCreditos','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('reporte-creditos-grid', {
		data: $(this).serialize()
	});
	return false;
});
");
?>

<h1>Manage Reporte Creditoses</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 btn')); ?>
<div class="search-form" style="display:none">
<?php $this->renderPartial('_search',array(
	'model'=>$model,
)); ?>
</div><!-- search-form -->

<?php $this->widget('bootstrap.widgets.TbGridView',array(
	'id'=>'reporte-creditos-grid',
	'dataProvider'=>$model->search(),
	'filter'=>$model,
	'columns'=>array(
		'idasociado',
		'idtrabajador',
		'idcredito',
		'cedula',
		'nombre',
		'apellidos',
		/*
		'fechasolicitud',
		'idunidad',
		'tipo_credito',
		'prestamo',
		'interes',
		'cuota_pagar',
		'intereses',
		'capital',
		'mto_cancelado',
		'deuda_actual',
		'cuotas_pagadas',
		'cuotas_pendientes',
		*/
		array(
			'class'=>'bootstrap.widgets.TbButtonColumn',
		),
	),
)); ?>
