<?php
/* @var $this ConfVaribaleBancoController */
/* @var $data ConfVaribaleBanco */
?>

<div class="view">

	<b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
	<?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('nombre_variable')); ?>:</b>
	<?php echo CHtml::encode($data->nombre_variable); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('descripcion_variable')); ?>:</b>
	<?php echo CHtml::encode($data->descripcion_variable); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('formato_variable')); ?>:</b>
	<?php echo CHtml::encode($data->formato_variable); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('condicion_variable')); ?>:</b>
	<?php echo CHtml::encode($data->condicion_variable); ?>
	<br />

	<b><?php echo CHtml::encode($data->getAttributeLabel('caracteristica_variable')); ?>:</b>
	<?php echo CHtml::encode($data->caracteristica_variable); ?>
	<br />


</div>