<?php
/* @var $this RepresentanteController */
/* @var $model SidcaiRepresentantelegal */
?>
<div class="card">
	<div class="row">
		<div class="col-md-10 offset-md-1">
			<div class="card-body">
				<h4 class="tabla-title">Datos del Representante Legal <b>#<?php echo $model->repr_codigo_pk;?></b></h4>
				<div class="table-responsive table-condensed tabla-borde">
					<?php 
					$this->widget('zii.widgets.CDetailView', array(
						'data'=>$model,
						'attributes'=>array(
							'repr_codigo_pk',
							array(
								'label' => 'Documento de Identificación',
								'type' => 'raw',
								'value' => $model->repr_tipodocuemnto,
							),
							'repr_documento',
							'repr_nombres',
							'repr_apellidos',
							'repr_direccion',
							array(
								'label' => 'Estado',
								'type' => 'raw',
								'value' => $model->estaCodigoFk->esta_nombre,
							),
							'repr_ciudad',
							array(
								'label' => 'Municipio',
								'type' => 'raw',
								'value' => $model->muniCodigoFk->muni_nombre,
							),
							array(
								'label' => 'Parroquia',
								'type' => 'raw',
								'value'=> $model->parrCodigoFk->parr_nombre,
							),
							'repr_correoelectronico',
							'repr_telefono',
							'repr_celular',
							'repr_habilitado',
							'audit_usua',
						),
					)); ?>
				</div>
				<br>
				<?php  
				echo TbHtml::linkButton('Regresar', array('url' => Yii::app()->baseUrl.'/admin/representante', 'color' => TbHtml::BUTTON_COLOR_SECONDARY));
				?>
			</div>
		</div>
	</div>
</div>