2012-10-15 14:49:53 +00:00
|
|
|
<?php
|
2012-10-02 19:36:18 +00:00
|
|
|
|
2012-10-15 14:49:53 +00:00
|
|
|
$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));
|
|
|
|
|
|
|
|
|
|
?>
|
2012-10-02 19:36:18 +00:00
|
|
|
|