1 rizwank 1.1 <!-- Macros for definition of attachment tables -->
2
3 <!-- Header definition for topic attachments and top table in attach screen -->
4 %TMPL:DEF{ATTACH:files:header(basic)}%
5 <div class="twikiAttachments"><p></p>
6 | *[[%TWIKIWEB%.FileAttachment][Attachment]]* | *Action* | *Size* | *Date* | *Who* | *Comment* |%TMPL:END%
7
8 <!-- A basic row definition, for attachment table and attach screen -->
9 %TMPL:DEF{ATTACH:files:row(basic)}%
10 | %A_ICON% <a href="%A_URL%">%A_FILE%</a> | <a href="%SCRIPTURL%/attach%SCRIPTSUFFIX%/%WEB%/%TOPIC%?filename=%A_FILE%&revInfo=1" title="change, update, previous revisions, move, delete...">manage</a> | %A_SIZE% | %A_DATE% | %A_USER% | %A_COMMENT% |%TMPL:END%
11
12 <!-- Header for topic attachment table -->
13 %TMPL:DEF{ATTACH:files:header}%
14 %TMPL:P{ATTACH:files:header(basic)}%
15 %TMPL:END%
16
17 <!-- Row for topic attachment table -->
18 %TMPL:DEF{ATTACH:files:row}%
19 %TMPL:P{ATTACH:files:row(basic)}%
20 %TMPL:END%
21
22 rizwank 1.1 <!-- Footer for topic attachment table -->
23 %TMPL:DEF{ATTACH:files:footer}%
24 </div>
25 %TMPL:END%
26
27 <!-- Header for table at top of attach screen -->
28 %TMPL:DEF{ATTACH:files:header:A}%
29 %TMPL:P{ATTACH:files:header(basic)}% *[[%TWIKIWEB%.FileAttribute][Attribute]]* |
30 %TMPL:END%
31
32 <!-- Row for table at top of attach screen -->
33 %TMPL:DEF{ATTACH:files:row:A}%
34 %TMPL:P{ATTACH:files:row(basic)}% %A_ATTRS% |
35 %TMPL:END%
36
37 <!-- Footer for table at top of attach screen -->
38 %TMPL:DEF{ATTACH:files:footer:A}%
39 </div>
40 %TMPL:END%
41
42 <!-- Header for versions table in attach screen -->
43 rizwank 1.1 %TMPL:DEF{ATTACH:versions:header}%
44 | *Version* | *Action* | *Date* | *Who* | *Comment* |
45 %TMPL:END%
46
47 <!-- Row for versions table in attach screen -->
48 %TMPL:DEF{ATTACH:versions:row}%
49 | %A_REV% | <a href="%A_URL%">view</a> | %A_DATE% | %A_USER% | %A_COMMENT% |
50 %TMPL:END%
51
52 <!-- Footer for versions table in attach screen -->
53 %TMPL:DEF{ATTACH:versions:footer}%
54 %TMPL:END%
|