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

25 lines
662 B
PHP
Raw Normal View History

<?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>