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,
|
||
|
|
)); ?>
|