Incam_IntranetNueva/www/themes/intranet/views/usuario/_view.php
david 11bf30f06d - Puesta en marcha de plantilla 'intranet'
- Aplicar plantilla a la gestión de usuarios.

git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@10 77cfc57b-8ef4-1849-9df6-4a38aa5da120
2012-02-02 16:02:36 +00:00

28 lines
852 B
PHP

<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('email')); ?>:</b>
<?php echo CHtml::encode($data->email); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('name')); ?>:</b>
<?php echo CHtml::encode($data->name); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('username')); ?>:</b>
<?php echo CHtml::encode($data->username); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('password')); ?>:</b>
<?php echo CHtml::encode($data->password); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('last_login_time')); ?>:</b>
<?php echo CHtml::encode($data->last_login_time); ?>
<br />
</div>