cmc-sales/views/products/edit.ctp
Karl Cordes e6b203090d Added CKeditor to Add Product. So, everyone should STOP pasting Word generated HTML into the database and breaking the PDF formatting.
When adding Spec, if you want it to format properly the Paste From Word feature MUST BE USED
Closes #46
2011-07-20 16:59:29 +10:00

22 lines
551 B
PHP
Executable file

<?
echo $javascript->link('ckeditor/ckeditor');
echo $javascript->link('ckeditor/adapters/jquery');
echo $javascript->link('edit_product');
?>
<div class="products form">
<?php echo $form->create('Product');?>
<fieldset>
<legend><?php __('Edit Product');?></legend>
<?php
echo $form->input('id');
echo $form->input('principle_id');
echo $form->input('title');
echo $form->input('description');
echo $form->input('notes');
?>
</fieldset>
<?php echo $form->end(array('label' => 'Edit Product', 'class'=>'wymupdate'));?>
</div>