]> code.citadel.org Git - citadel.git/blobdiff - webcit/static/t/files.html
Revert "serv_rssclient.c: style update"
[citadel.git] / webcit / static / t / files.html
diff --git a/webcit/static/t/files.html b/webcit/static/t/files.html
new file mode 100644 (file)
index 0000000..7037edc
--- /dev/null
@@ -0,0 +1,37 @@
+<?=("head")>
+<?%("COND:LOGGEDIN", 1, 1, 1, "", ="paging")>
+<div id="banner">
+       <h1><?_("Files available for download in")>&nbsp;<?THISROOM:NAME></h1>
+       <?!("COND:THISROOM:FLAG:QR", 2, #"QR_UPLOAD")>
+               <br>
+               <form enctype="multipart/form-data" method="POST" accept-charset="UTF-8" action="upload_file" name="upload_file_form">
+                       <input type="hidden" name="nonce" value="<?NONCE>">
+                       <?_("Upload a file:")>&nbsp;
+                       <input name="filename" size="60" type="file">&nbsp;
+                       <div id="navbar">
+                               <?_("Description:")>&nbsp;
+                               <input type="text" name="description" maxlength="50" size="50">&nbsp;
+                               <input type="submit" name="attach_button" value="<?_("Upload")>">
+                       </div>
+               </form>
+       <??("X", 2)>
+</div>
+
+<script language="javascript" type="text/javascript">
+  document.onkeydown = CtdlMsgListKeyPress;
+  if (document.layers) {
+       document.captureEvents(Event.KEYPRESS);
+  }
+</script>
+
+<div id="content" class="service">
+       <table class="downloads_background altern">
+       <tr>
+         <th><?_("Filename")>&nbsp;<a href="do_template?template=files?SortOrder=<?SORT:ORDER("filename")>&SortBy=<?SORT:NEXT("filename")>"><img border="0" src="<?SORT:ICON("filename")>" /></a> </th>
+         <th><?_("Size")>&nbsp;<a href="do_template?template=files?SortOrder=<?SORT:ORDER("filesize")>&SortBy=<?SORT:NEXT("filesize")>"><img border="0" src="<?SORT:ICON("filesize")>" /></a> </th>
+         <th><?_("Content")>&nbsp;<a href="do_template?template=files?SortOrder=<?SORT:ORDER("filemime")>&SortBy=<?SORT:NEXT("filemime")>"><img border="0" src="<?SORT:ICON("filemime")>" /></a> </th>
+         <th><?_("Description")>&nbsp;<a href="do_template?template=files?SortOrder=<?SORT:ORDER("filesubject")>&SortBy=<?SORT:NEXT("filesubject")>"><img border="0" src="<?SORT:ICON("filesubject")>" /></a> </th>
+       </tr>
+       <?ITERATE("ROOM:FILES", ="files_section_onefile")>
+       </div>
+<?=("trailing")>