2012-10-22 15:47:11 +00:00
|
|
|
<?php
|
2012-11-02 11:48:15 +00:00
|
|
|
/**
|
|
|
|
|
* @var $this CandidatoController
|
|
|
|
|
*/
|
2012-10-22 15:47:11 +00:00
|
|
|
$this->pageTitle = Yii::t('profind', 'Modificación de candidato');
|
|
|
|
|
|
|
|
|
|
$this->breadcrumbs = array(
|
|
|
|
|
Yii::t('profind', 'BD Candidatos') => array('/candidato/index'),
|
2012-11-12 11:57:20 +00:00
|
|
|
$candidato->nombreCompleto
|
2012-10-22 15:47:11 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Sidebar
|
|
|
|
|
//echo $this->renderPartial('//sidebars/_menu_candidato');
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
<div class="row-fluid">
|
|
|
|
|
<div class="span12">
|
|
|
|
|
<h2 class="heading"><?php echo $candidato->nombreCompleto; ?> <small><?php echo Yii::t('profind', 'Modificación de candidato'); ?></small></h3>
|
|
|
|
|
<?php echo $this->renderPartial('_form', array('candidato' => $candidato)); ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|