* add first draft of group-change detection
[citadel.git] / webcit / static / t / files.html
1 <?=("head")>
2 <?=("important_msg")>
3 <?ICONBAR>
4 <div id="banner"><h1><?_("Files available for download in")> <?ROOMNAME></h1></div>
5
6 <script language="javascript" type="text/javascript">
7   document.onkeydown = CtdlMsgListKeyPress;
8   if (document.layers) {
9         document.captureEvents(Event.KEYPRESS);
10   }
11 </script>
12
13 <div id="content" class="service">
14
15 <div class="fix_scrollbar_bug">
16
17 <table class="downloads_background">
18 <tr>
19   <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>
20   <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>
21   <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>
22   <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>
23 </tr>
24 <?ITERATE("ROOM:FILES", "section_files_onefile")>
25
26
27
28
29
30
31
32 <??("COND:ROOM:FLAGS:QR_UPLOAD", 2)>
33 <hr>
34 <form enctype="multipart/form-data" method="POST" accept-charset="UTF-8" action="upload_file" name="upload_file_form">
35 <input type="hidden" name="nonce" value="<?NONCE>">
36 <?_("Upload a file:")>
37 &nbsp;
38 <input NAME="filename" SIZE=16 TYPE="file">&nbsp;
39 <?_("Description:")>&nbsp;
40 <input type="text" name="description" maxlength="64" size="64">&nbsp;
41 <input type="submit" name="attach_button" value="<?_("Upload")>">
42 </form>
43 </div>
44 <??("X", 1)>
45
46
47 </div>
48
49
50 <?=("trailing")>