Incam_IntranetNueva/www/protected/views/usuario/_view.php
2012-03-01 19:30:11 +00:00

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>