17 lines
386 B
PHP
17 lines
386 B
PHP
<?php echo $form->create('QuotePage');?>
|
|
<fieldset>
|
|
<legend>
|
|
<?php __('Edit Quote Page'); ?>
|
|
</legend>
|
|
|
|
<?php
|
|
echo $form->input('id');
|
|
echo $form->input('page_number', array('type'=>'hidden'));
|
|
echo $form->input('content', array('class'=>'ckeditor'));
|
|
|
|
|
|
echo $form->input('quote_id', array('type'=>'hidden'));
|
|
?>
|
|
<?php echo $form->end('Submit');?>
|
|
|
|
</fieldset>
|