cmc-sales/views/quote_pages/edit.ctp
Karl Cordes 4347aee5f0 Changes
2009-11-04 17:12:12 +11:00

17 lines
386 B
PHP
Executable file

<?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>