
<?php
$this->breadcrumbs = array(
    'Basicas' => array('index'),
    $model->id,
);

$this->menu = array(
    array('label' => 'List Basica', 'url' => array('index')),
    array('label' => 'Create Basica', 'url' => array('create')),
    array('label' => 'Update Basica', 'url' => array('update', 'id' => $model->id)),
    array('label' => 'Delete Basica', 'url' => '#', 'linkOptions' => array('submit' => array('delete', 'id' => $model->id), 'confirm' => 'Are you sure you want to delete this item?')),
    array('label' => 'Manage Basica', 'url' => array('admin')),
);
?>

<h3 style="text-align: center">Vista de configuraci&oacute;n de montos</h3><hr>
    <?= CHtml::link('Actualizar', array('updateMontos'), array('class' => 'btn btn-info')); ?>

  <br><br>
<?php $this->widget('bootstrap.widgets.TbAlert', array(
        'block' => true, // display a larger alert block?
        'fade' => true, // use transitions?
        'closeText' => '×', // close link text - if set to false, no close link is displayed
        'alerts' => array(// configurations per alert type
            'error' => array('block' => true, 'fade' => true, 'closeText' => '×'), // success, info, warning, error or danger
            'success' => array('block' => true, 'fade' => true, 'Text' => '&times;'), // success, info, warning, error or danger
        ),
    ))?><hr>

    <fieldset><legend style=" font-size: 17px;"><b>Porcentaje de haberes</b></legend>
        <div class=" span5">
            <?= $model->getAttributeLabel('porcentaje_disponibilidad')?>
            <br>
            <?= number_format($model->porcentaje_disponibilidad, 2, ',', '.').' %'?>
        </div>
    </fieldset><br>
  <fieldset>
    <legend style=" font-size: 17px;"><b>Bloqueo de haberes por: </b><?= $model->opcion_haberes == 1 ? 'Monto' : 'Porcentaje'?>
            </legend>
        <div class=" span5">
            <?= $model->opcion_haberes == 1
                ? 'Monto: '. number_format($model->monto_bloqueo_haberes, 2, ',', '.')
                : 'Porcentaje: '. number_format($model->porcentaje_bloqueo_haberes, 2, ',', '.'). ' %'
            ?>
        </div>
    </fieldset><br><br>
