egroupware/filemanager/templates/default/upload.tpl
Pim Snel c1698d2f2b - fixed group files (essential for sharing files)
- make all buttons work in IE (for some people quite usefull :)
- some lay-out improvements
- fixed save and done button in file edit mode
- add sidebox menu
- re-arranged toolbars (still not finished)
- new location selectbox
- some speed improvements
2003-12-08 23:18:34 +00:00

31 lines
831 B
Smarty

<!-- BEGIN upload_header -->
<form method="post" action="{form_action}" enctype="multipart/form-data">
<div>
<table cellspacing="0" cellpadding="2">
<tbody>
<tr bgcolor="#dedede">
<td><strong>{lang_file}</strong></td>
<td><strong>{lang_comment}</strong></td>
</tr>
<!-- END upload_header -->
<!-- BEGIN row -->
<tr >
<td><input maxlength="255" name="upload_file[]" type="file"></td>
<td><input name="upload_comment[]" type="text"></td>
</tr>
<!-- END row -->
<!-- BEGIN upload_footer -->
</tbody></table>
<input value="true" name="uploadprocess" type="hidden">
<input value="{path}" name="path" type="hidden">
<input value="{num_upload_boxes}" name="show_upload_boxes" type="hidden">
<input value="{lang_upload}" name="upload_files" type="submit">
<br/>
{change_upload_boxes}
</div>
</form>
<!-- END upload_footer -->