Funciona: - Usuario - Empresa git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@2 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
44 lines
2.0 KiB
PHP
44 lines
2.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('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>
|
|
|