15 lines
387 B
PHP
15 lines
387 B
PHP
<div class="attachments form">
|
|
<?php echo $form->create('Attachment', array('type'=>'file'));?>
|
|
<fieldset>
|
|
<legend><?php __('Add Attachment');?></legend>
|
|
<?php
|
|
echo $form->input('principle_id');
|
|
echo $form->input('name');
|
|
echo $form->file('file');
|
|
echo $form->input('description');
|
|
echo $form->input('archived');
|
|
?>
|
|
</fieldset>
|
|
<?php echo $form->end('Submit');?>
|
|
</div>
|