Annotation of ImageArchive/zpt/thumbselectedMD.zpt, revision 1.2
1.1 dwinter 1: <html>
2: <body>
3: <!--<span tal:repeat="thumb python:here.REQUEST.SESSION['filenames']">-->
4: <tal:block tal:condition="python:here.show_thumbs_selected_rows(3)">
5: <table border="1">
6: <tr tal:repeat="i python:here.show_thumbs_selected_rows(3)">
7:
8: <td tal:repeat="thumb python:here.show_thumbs_columns(i,3)">
9: <a tal:attributes="id python:thumb[0];href python:here.absolute_url()+'/selection?filename='+thumb[0]+'&showall='+here.REQUEST.SESSION.get('showall','no')" target="_top">
10: <table>
11: <tr><td>
12: <span tal:replace="structure python:here.getThumbFunction(thumb[0],'thumbMD')"/>
13: </td></tr>
14: <tr><td>
15: <span tal:replace="structure python:here.getThumbAttribute(thumb[0],'title')"/>
16: </td></tr>
17: </table>
18: </a>
19: </td>
20: </tr>
21: </table>
22: </tal:block>
23: <tal:block tal:condition="not:python:here.show_thumbs_selected_rows(3)">
24: <b>Sorry, I lost your selection. You have to select the files from the database again.</b>
25: </tal:block>
26: </body>
27: </html>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>