<h3 class="text-center">Administraci&oacute;n del configurador de pre-nomina</h3>
<hr>
<?php
$this->widget('bootstrap.widgets.TbAlert', array(
	'block' => true,
	'fade' => true,
	'closeText' => '×',
	'alerts' => array(
		'success' => array('block' => true, 'fade' => true, 'closeText' => '×'),
		'error' => array('block' => true, 'fade' => true, 'closeText' => '×'),
	),
));
echo CHtml::link('Registrar configuración de la pre-nomina', Yii::app()->createUrl('prestamo/confPreNomina/create'), array('class' => 'btn btn-inverse'));
?>

<?php $this->widget('bootstrap.widgets.TbGridView', array(
	'id' => 'conf-pre-nomina-grid',
	'dataProvider' => $model->search(),
	'filter' => $model,
	'columns' => array(
		[
			'name' => 'metodo_cobro_cuota',
			'value' => '$data->metodo',
		],
		array(
			'header' => 'Acciones',
			'class' => 'bootstrap.widgets.TbButtonColumn',
			'template' => '{update}',
			'buttons' => array(
				'view' => array(
					'icon' => 'icon-list-alt',
				),
			)
		),
	),
)); ?>
