20 lines
786 B
Plaintext
20 lines
786 B
Plaintext
|
|
<div class="quotePages form">
|
||
|
|
<?php echo $form->create('QuotePage');?>
|
||
|
|
<fieldset>
|
||
|
|
<legend><?php __('Add QuotePage');?></legend>
|
||
|
|
<?php
|
||
|
|
echo $form->input('page_number', array('type'=>'hidden', 'value'=>$pagenumber));
|
||
|
|
echo $form->input('content', array('class'=>'ckeditor'));
|
||
|
|
echo $form->input('quote_id', array('type'=>'hidden', 'value'=>$quoteid));
|
||
|
|
?>
|
||
|
|
</fieldset>
|
||
|
|
<?php echo $form->end('Submit');?>
|
||
|
|
</div>
|
||
|
|
<div class="actions">
|
||
|
|
<ul>
|
||
|
|
<li><?php echo $html->link(__('List QuotePages', true), array('action' => 'index'));?></li>
|
||
|
|
<li><?php echo $html->link(__('List Quotes', true), array('controller' => 'quotes', 'action' => 'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Quote', true), array('controller' => 'quotes', 'action' => 'add')); ?> </li>
|
||
|
|
</ul>
|
||
|
|
</div>
|