git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@16 77cfc57b-8ef4-1849-9df6-4a38aa5da120
18 lines
511 B
PHP
18 lines
511 B
PHP
<?php
|
|
$this->breadcrumbs=array(
|
|
'Candidatos'=>array('index'),
|
|
'Nuevo candidato',
|
|
);
|
|
$this->menu=array(
|
|
array(
|
|
'label'=>'<img class="mgright5" alt="Lista de candidatos" src="' . Yii::app()->theme->baseUrl . '/images/icons/small/white/user.png"/>Lista de candidatos',
|
|
'url'=>array('index'),
|
|
'linkOptions'=>array('class'=>'iconlink'),
|
|
),
|
|
);
|
|
$this->pageTitle='Nuevo candidato';
|
|
?>
|
|
|
|
<?php echo $this->renderPartial('_form', array(
|
|
'model'=>$model,
|
|
)); ?>
|