git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@64 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
25 lines
560 B
PHP
25 lines
560 B
PHP
<?php
|
|
|
|
$this->pageTitle = Yii::t('profind', 'BD Candidatos');
|
|
|
|
$this->breadcrumbs = array(
|
|
Yii::t('profind', 'BD Candidatos'),
|
|
);
|
|
|
|
// Sidebar
|
|
//echo $this->renderPartial('//sidebars/_menu_candidato');
|
|
|
|
// Contenido
|
|
//echo $this->renderPartial('_form', array('model' => $model));
|
|
|
|
?>
|
|
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<h3 class="heading"><?php echo Yii::t('profind', 'BD Candidatos'); ?></h3>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->renderPartial('_grid', array('candidatos' => $candidatos)); ?>
|
|
|