File:  [Repository] / ImageArchive / zpt / thumb2.zpt
Revision 1.8: download - view: text, annotated - select for diffs - revision graph
Mon May 15 08:18:02 2006 UTC (18 years ago) by dwinter
Branches: MAIN
CVS tags: HEAD
minorCVS: ----------------------------------------------------------------------

<html>
<body>
<span tal:replace="structure here/showFolders"/>
<span tal:replace="structure here/showRuler"/> 

<table tal:define="colRows python:here.getColTimesRow(here.REQUEST.SESSION.get('showall','no'))">
<tr tal:repeat="i python:here.show_thumbs_rows(colRows[0],numberOfRows=colRows[1],showall=here.REQUEST.SESSION.get('showall','no'))">
  <td tal:repeat="thumb python:here.show_thumbs_columns(i,colRows[0])">
   <a tal:attributes="id thumb;href python:here.REQUEST['URL1']+'?filename='+thumb +'&showall='+here.REQUEST.SESSION.get('showall','no')+'&generic='+here.REQUEST.get('generic','no')" target="_top">
   <table>
	<tr><td>
	    <span tal:replace="structure python:getattr(getattr(here,thumb),'thumb')()"/>
	</td></tr>
	<tr><td>
	<span tal:replace="structure python:getattr(getattr(here,thumb),'title')"/>
	</td></tr>
	
  </table>
	</a>
	<span tal:condition="python:hasattr(getattr(here,thumb),'meta')">
	<span tal:condition="not:python:getattr(here,thumb).getMeta()==None">
	<br>
	<a tal:attributes="href python:getattr(getattr(here,thumb),'getMeta')()" target="right">
 Meta</a>
	</span></span>
  </td>
</tr>
</table>

</body>
</html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>