Code

b34a11ce2460ba8678116c4860f56465b8863bdf
[roundup.git] / templates / classic / html / file.index.html
1 <!-- dollarId: file.index,v 1.4 2002/01/23 05:10:27 richard Exp dollar-->
2 <tal:block metal:use-macro="templates/page/macros/icing">
3 <title metal:fill-slot="head_title"> 
4  List of files - <span tal:replace="config/TRACKER_NAME" />
5 </title> 
6 <span metal:fill-slot="body_title" tal:omit-tag="python:1">List of files</span>
7 <td class="content" metal:fill-slot="content">
9 <table class="otherinfo">
10 <tr><th style="padding-right: 10">Download</th>
11     <th style="padding-right: 10">Content Type</th>
12     <th style="padding-right: 10">Uploaded By</th>
13     <th style="padding-right: 10">Date</th>
14 </tr>
15 <tr tal:repeat="file context/list">
16  <td>
17   <a tal:attributes="href string:file${file/id}/${file/name}"
18      tal:content="file/name">dld link</a>
19  </td>
20  <td tal:content="file/type">content type</td>
21  <td tal:content="file/creator">creator's name</td>
22  <td tal:content="file/creation">creation date</td>
23 </tr>
24 </table>
26 </td>
28 </tal:block>