Incam_PROFIND_Web/www/protected/views/usuario/_view.php

44 lines
2.0 KiB
PHP
Raw Normal View History

<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('nombre')); ?>: <br />
<?php echo CHtml::encode($data->getAttributeLabel('apellidos')); ?>: <br />
<?php echo CHtml::encode($data->getAttributeLabel('email')); ?>: <br />
<?php echo CHtml::encode($data->getAttributeLabel('titulo')); ?>: <br />
<?php echo CHtml::encode($data->getAttributeLabel('localidad')); ?>: <br />
<?php echo CHtml::encode($data->getAttributeLabel('telefono')); ?>: <br />
<?php echo CHtml::encode($data->getAttributeLabel('descripción')); ?>: <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->nombre); ?><br />
<?php echo CHtml::encode($data->apellidos); ?><br />
<?php echo CHtml::mailto(CHtml::encode($data->email)); ?><br/>
<?php echo CHtml::encode($data->titulo); ?><br/>
<?php echo CHtml::encode($data->localidad); ?><br/>
<?php echo CHtml::encode($data->telefono); ?><br/>
<?php echo CHtml::encode($data->descripcion); ?><br/>
<?php echo CHtml::encode($data->last_login_time); ?>
</div><!-- three_fourth last -->
<br clear="all" /><br />
<?php
/* $this->renderPartial('_agentes', array(
'model'=>$data,
// 'form'=>$form,
));
*/
?>
</div>
</div>