Cleanup: move all into the edit/ subfolder
[citadel.git] / webcit / static / t / edit / message / attachments_pane.html
diff --git a/webcit/static/t/edit/message/attachments_pane.html b/webcit/static/t/edit/message/attachments_pane.html
new file mode 100644 (file)
index 0000000..d482407
--- /dev/null
@@ -0,0 +1,23 @@
+<div align="right">
+       <a href="javascript:hide_attachments_form();">
+               <?_("Close window")>&nbsp;<img src="static/webcit_icons/closewindow.gif" border="0"></div>
+       </a>
+       <h2><img src="static/webcit_icons/essen/16x16/attachement.png">&nbsp;<?_("Attachments:")></h2>
+       <ul><?ITERATE("MSG:ATTACHNAMES", ="edit_message_section_attach_select")></ul>
+
+       <iframe id="upload_target" name="upload_target" src="" style="width:0;height:0;border:0">
+               (Hidden iFrame for uploads because ajax cannot handle files)
+       </iframe>
+
+       <form name="upload_attachment_form" id="upload_attachment_form" accept-charset="UTF-8" enctype="multipart/form-data" method="POST" action="upload_attachment" target="upload_target">
+               <input type="hidden" name="nonce" value="<?NONCE>">
+               <div id="gonna_upload_this">
+                       <input type="hidden" name="submit_action" value="">
+                       <?_("Attach file:")>
+                       <input name="attachfile" id="attachfile" class="attachfile" size=40 type="file" onChange="$('gonna_upload_this').style.display='none'; $('upload_throbber').style.display='block'; document.upload_attachment_form.submit(); $('attachfile').value=''; show_attachments_form(); update_attachment_count();">
+               </div>
+
+               <div id="upload_throbber" style="display:none">
+                       <?_("Upload")>&nbsp;<img src="static/webcit_icons/throbber.gif" border="0">
+               </div>
+       </form>