git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@62 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
18 lines
435 B
PHP
18 lines
435 B
PHP
<?php
|
|
|
|
$this->pageTitle = Yii::t('profind', 'Perfil') . ' - ' . Yii::app()->user->name;
|
|
|
|
$this->breadcrumbs = array(
|
|
Yii::t('profind', 'Perfil'),
|
|
);
|
|
|
|
// Sidebar
|
|
echo $this->renderPartial('//sidebars/_menu_usuario');
|
|
echo $this->renderPartial('//sidebars/_cerrar_cuenta', array('model' => $model));
|
|
|
|
// Contenido
|
|
echo $this->renderPartial('_form', array('model' => $model));
|
|
|
|
?>
|
|
|