- Grid completado en 'Usuario', pendiente en Candidato. git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@17 77cfc57b-8ef4-1849-9df6-4a38aa5da120
25 lines
1.0 KiB
PHP
25 lines
1.0 KiB
PHP
<div class="invoice three_fourth last">
|
|
<div class="invoice_inner">
|
|
<span>[Logo here]</span>
|
|
<h2 class="title">Usuario</h2>
|
|
<br clear="all" /><br />
|
|
<div class="one_fourth">
|
|
<strong>
|
|
<?php echo CHtml::encode($data->getAttributeLabel('name')); ?>: <br />
|
|
<?php echo CHtml::encode($data->getAttributeLabel('email')); ?>: <br />
|
|
<?php echo CHtml::encode($data->getAttributeLabel('username')); ?>: <br />
|
|
<?php echo CHtml::encode($data->getAttributeLabel('last_login_time')); ?>: <br />
|
|
</strong>
|
|
</div><!-- one_third -->
|
|
|
|
<div class="three_fourth last">
|
|
<?php echo CHtml::encode($data->name); ?><br />
|
|
<?php echo CHtml::mailto(CHtml::encode($data->email)); ?><br/>
|
|
<?php echo CHtml::encode($data->username); ?>
|
|
<?php echo CHtml::encode($data->last_login_time); ?>
|
|
</div><!-- three_fourth last -->
|
|
<br clear="all" /><br />
|
|
</div>
|
|
</div>
|
|
|