Annotation of ImageArchive/zpt/thumb2.zpt, revision 1.3
1.1 dwinter 1: <html>
2: <body>
1.3 ! dwinter 3: <span tal:replace="structure here/showRuler"/>
1.1 dwinter 4:
1.3 ! dwinter 5: <table tal:define="colRows python:here.getColTimesRow(here.REQUEST.SESSION.get('showall','no'))">
1.1 dwinter 6: <tr tal:repeat="i python:here.show_thumbs_rows(colRows[0],numberOfRows=colRows[1])">
7: <td tal:repeat="thumb python:here.show_thumbs_columns(i,colRows[0])">
1.2 dwinter 8: <a tal:attributes="id thumb;href python:here.REQUEST['URL1']+'?filename='+thumb" target="_top">
1.1 dwinter 9: <span tal:replace="structure python:getattr(getattr(here,thumb),'thumb')()"/><br/>
10: <span tal:replace="structure python:getattr(getattr(here,thumb),'title')"/>
11: </a>
12: <span tal:condition="python:hasattr(getattr(here,thumb),'meta')">
13: <span tal:condition="not:python:getattr(here,thumb).getMeta()==None">
14: <br>
15: <a tal:attributes="href python:getattr(getattr(here,thumb),'getMeta')()" target="right">
16: Meta</a>
17: </span></span>
18: </td>
19: </tr>
20: </table>
21:
22: </body>
23: </html>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>