Mercurial > p > roundup > code
comparison website/issues/html/file.index.html @ 4024:c2d0d3e9099d website
svn repository setup
| author | Stefan Seefeld <stefan@users.sourceforge.net> |
|---|---|
| date | Fri, 06 Feb 2009 13:16:31 +0000 |
| parents | |
| children | baddbae588ad |
comparison
equal
deleted
inserted
replaced
| 4023:86c38b5aed66 | 4024:c2d0d3e9099d |
|---|---|
| 1 <tal:block metal:use-macro="templates/page/macros/icing"> | |
| 2 <title metal:fill-slot="head_title" i18n:translate="" | |
| 3 >List of files - <span tal:replace="config/TRACKER_NAME" i18n:name="tracker" /></title> | |
| 4 <span metal:fill-slot="body_title" tal:omit-tag="python:1" | |
| 5 i18n:translate="">List of files</span> | |
| 6 <td class="content" metal:fill-slot="content"> | |
| 7 | |
| 8 <table class="otherinfo" tal:define="batch request/batch"> | |
| 9 <tr><th style="padding-right: 10" i18n:translate="">Download</th> | |
| 10 <th style="padding-right: 10" i18n:translate="">Descriptoin</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/description">description</td> | |
| 21 <td tal:content="file/type">content type</td> | |
| 22 <td tal:content="file/creator">creator's name</td> | |
| 23 <td tal:content="file/creation">creation date</td> | |
| 24 </tr> | |
| 25 | |
| 26 <metal:block use-macro="templates/issue.index/macros/batch-footer" /> | |
| 27 | |
| 28 </table> | |
| 29 | |
| 30 </td> | |
| 31 | |
| 32 </tal:block> |
