Code

Move templates/ to share/roundup/templates/
[roundup.git] / share / roundup / 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" i18n:translate=""
4  >List of files - <span tal:replace="config/TRACKER_NAME" i18n:name="tracker" /></title>
5 <span metal:fill-slot="body_title" tal:omit-tag="python:1"
6   i18n:translate="">List of files</span>
7 <td class="content" metal:fill-slot="content">
9 <table class="otherinfo" tal:define="batch request/batch">
10  <tr><th style="padding-right: 10" i18n:translate="">Download</th>
11      <th style="padding-right: 10" i18n:translate="">Content Type</th>
12      <th style="padding-right: 10" i18n:translate="">Uploaded By</th>
13      <th style="padding-right: 10" i18n:translate="">Date</th>
14  </tr>
15  <tr tal:repeat="file batch" tal:attributes="class python:['normal', 'alt'][repeat['file'].index%6/3]">
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>
25  <metal:block use-macro="templates/issue.index/macros/batch-footer" />
27 </table>
29 </td>
31 </tal:block>