File:  [Repository] / ImageArchive / zpt / thumbListMD.zpt
Revision 1.5: download - view: text, annotated - select for diffs - revision graph
Mon Aug 18 13:27:42 2008 UTC (15 years, 9 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
*** empty log message ***

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

		<div tal:define="colRows python:here.getColTimesRow(here.REQUEST.SESSION.get('showall','no'))">
			<div tal:repeat="i python:here.show_thumbs_rows(colRows[0],numberOfRows=colRows[1])">
  				<div 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">
			    		<div tal:content="structure python:getattr(getattr(here,thumb),'thumbMD')()">thumb</div>
						<span tal:replace="structure python:getattr(getattr(here,thumb),'title')"/>
					
					</a>
					<div tal:condition="python:hasattr(getattr(here,thumb),'meta')">
		 	       		<div tal:condition="not:python:getattr(here,thumb).getMeta()==None">
							<br>
							<a tal:attributes="href python:getattr(getattr(here,thumb),'getMeta')()" target="right">
 							Meta</a>
						</div>
  					</div>
				</div>
			</div>
		</div>

</body>
</html>

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