I created the Form.i click the new link button display only title,did not work include_partial(),
What is the problem? any body plz help me.other module forms works fine. This is newsuccess.php(template)
<h1>New Album</h1>
<?php include_partial('form', array('editFormFields'=>$editFormFields)) ?>
this is my form.php
<?php use_stylesheets_for_form($form) ?>
<?php use_javascripts_for_form($form) ?>
<form action="<?php echo url_for('album/'. ($form->getObject()->isNew() ?
'create' : 'update').(!$form->getObject()->isNew() ? '?id='.$form->getObject
()->getId() : '')) ?>" method="post" <?php $form->isMultipart() and print
'enctype="multipart/form-data" ' ?>>
<?php if (!$form->getObject()->isNew()):
?>
<input type="hidden" name="sf_method" value="put" />
<?php endif; ?>
<table>
<tfoot>
<tr>
<td colspan="2">
<a href="<?php
echo url_for('album/index') ?>">Back to list</a>
<?php if (!$form-
>getObject()->isNew()): ?>
<?php echo link_to('Delete',
'album/delete?id='.$form->getObject()->getId(), array('method' => 'delete',
'confirm' => 'Are you sure?')) ?>
<?php endif; ?>
<input
type="submit" value="Save" />
</td>
</tr>
</tfoot>
<tbody>
<?php echo $form ?>
</tbody>
</table>
</form>
My apachy error log nothing to display
Plz help me.