Code

moving templates around
[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  <span tal:replace="config/TRACKER_NAME" />: List of files
5 </title> 
6 <td class="page-header-top" metal:fill-slot="body_title">
7  <h2>List of files</h2>
8 </td>
9 <td class="content" metal:fill-slot="content">
11 <table class="otherinfo">
12 <tr><th style="padding-right: 10">Download</th>
13     <th style="padding-right: 10">Content Type</th>
14     <th style="padding-right: 10">Uploaded By</th>
15     <th style="padding-right: 10">Date</th>
16 </tr>
17 <tr tal:repeat="file context/list">
18  <td>
19   <a tal:attributes="href string:file${file/id}/${file/name}"
20      tal:content="file/name">dld link</a>
21  </td>
22  <td tal:content="file/type">content type</td>
23  <td tal:content="file/creator">creator's name</td>
24  <td tal:content="file/creation">creation date</td>
25 </tr>
26 </table>
28 </td>
30 </tal:block>