Nested Form , No Aparece En La Vista

hola soy nuevo con el framework tengo el siguiente problema

cree este form:

views/pacientes/_newForm.php

<?php

return array(

'elements'=&gt;array(


	'p'=&gt;array(


		'type'=&gt;'form',


		'title'=&gt;'Informacion de Paciente',


		'elements'=&gt;array(


			'DniPaciente'=&gt;array(


				'type'=&gt;'number',


				),


			'TipoDoc'=&gt;array(


				'type'=&gt;'text',


				),


			'Nombre'=&gt;array(


				'type'=&gt;'text',


				),


			'Apellido'=&gt;array(


				'type'=&gt;'text',


				),


			'FechaNac'=&gt;array(


				'type'=&gt;'date',


				),


			),


		),

‘aaf’=>array(

'type'=&gt;'form',


'title'=&gt;'Antecedentes Actividad Fisica',


'elements'=&gt;array(


	'a1'=&gt;array(


		'type'=&gt;'bool',


		),


	'a2'=&gt;array(


		'type'=&gt;'bool',


		),


	'a3'=&gt;array(


		'type'=&gt;'bool',


		),


	'a4'=&gt;array(


		'type'=&gt;'bool',


		),


	'a5'=&gt;array(


		'type'=&gt;'bool',


		),


	'a6'=&gt;array(


		'type'=&gt;'bool',


		),


	


	),


),

‘ac’=>array(

'type'=&gt;'form',


'title'=&gt;'Antecedentes Clinicos',


'elements'=&gt;array(


	'DniPacienteFk3'=&gt;array(


		'type'=&gt;'number',


		),


	'a1'=&gt;array(


		'type'=&gt;'text',


		),


	'a2'=&gt;array(


		'type'=&gt;'text',


		),


	'a3'=&gt;array(


		'type'=&gt;'text',


		),


	'a4'=&gt;array(


		'type'=&gt;'text',


		),


	'a5'=&gt;array(


		'type'=&gt;'text',


		),


	'a6'=&gt;array(


		'type'=&gt;'text',


		),


	'a7'=&gt;array(


		'type'=&gt;'text',


		),


	),


),

‘ef’=>array(

'type'=&gt;'form',


'title'=&gt;'Examen Fisico',


'elements'=&gt;array(


	'DniPacienteFk'=&gt;array(


		'type'=&gt;'number',


		),


	'e28'=&gt;array(


		'type'=&gt;'text',


		),


	'e29'=&gt;array(


		'type'=&gt;'text',


		),


	'e30'=&gt;array(


		'type'=&gt;'text',


		),


	'e31'=&gt;array(


		'type'=&gt;'text',


		),


	),


),

‘buttons’=>array(

'new'=&gt;array(


	'type'=&gt;'submit',


	'label'=&gt;'Registrar Datos',


	),





),


),

);

?>

<?php echo $form;?>

en pacientesControllers.php

agregue la funcion

public function actionNew(){

	&#036;form = new CForm('application.views.pacientes._newForm');


	&#036;form['p']-&gt;model = new Pacientes;


	&#036;form['aaf']-&gt;model = new Antecedentesactividadfisica;


	&#036;form['ac']-&gt;model = new AntecedentesClinicos;


	&#036;form['ef']-&gt;model = new ExamenFisico;


	if(&#036;form-&gt;submitted('new') &amp;&amp; &#036;form-&gt;validate()) {


		&#036;pacientes = &#036;form['p']-&gt;model;


		&#036;antecedentesactividadfisica = &#036;form['aaf']-&gt;model;


		&#036;antecedentesclinicos = &#036;form['ac']-&gt;model;


		&#036;examenfisico = &#036;form['ef']-&gt;model;


		if(&#036;pacientes-&gt;save(false)) {


			&#036;antecedentesactividadfisica-&gt;DniPacienteFk4 = &#036;pacientes-&gt;DniPaciente;


			&#036;antecedentesclinicos-&gt;DniPacienteFk3 = &#036;pacientes-&gt;DniPaciente;


			&#036;examenfisico-&gt;DniPacienteFk = &#036;pacientes-&gt;DniPaciente;





			&#036;antecedentesactividadfisica-&gt;save(false);


			&#036;antecedentesclinicos-&gt;save(false);


			&#036;examenfisico-&gt;save(false);





			&#036;this-&gt;redirect(array('site/index'));


		}


	}


	&#036;this-&gt;render('new', array('form'=&gt;&#036;form));


}

el problema es que en la vista no aparece el form queda vacia, alguien me ayuda con esto por favor, muchas gracias