This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
factuges_web/www/protected/views/usuario/_view.php
david e93adbdd4e - Importación inicial
- Registro, activación y entrada de usuarios


git-svn-id: https://192.168.0.254/svn/Rodax.factuges_web/trunk@2 e455b18d-f7fe-5245-9c43-e2c35af70a32
2013-06-13 16:04:48 +00:00

25 lines
662 B
PHP

<?php
/* @var $this UsuarioController */
/* @var $data Usuario */
?>
<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('username')); ?>:</b>
<?php echo CHtml::encode($data->username); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('pwd_hash')); ?>:</b>
<?php echo CHtml::encode($data->pwd_hash); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('persona_id')); ?>:</b>
<?php echo CHtml::encode($data->persona_id); ?>
<br />
</div>