File:  [Repository] / ImageArchive / zpt / IFrameMain.zpt
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Mon Jul 19 14:30:14 2004 UTC (19 years, 10 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
bug in show fixed

<html metal:use-macro="here/main_template/macros/page">
  
  <body>
    <span metal:fill-slot="nav">
      <table border="0" width="100%">
	<tr>
	  <td align="left">
	    <a tal:attributes="href python:here.REQUEST['URL1']+'/addImage'" target="right">Add an Image</a>
	  </td>
	</tr>
	<tr>
	  <td align="left">
	    <a tal:condition="python:here.REQUEST.SESSION.has_key('filename')" tal:attributes="href python:here.REQUEST['URL1']+'/'+here.REQUEST.SESSION['filename']+'/download'" target="_blank">download the currently selected image</a>
	 </td></tr>
	<tr>
	  <td align="left">
	    <a tal:attributes="href python:here.REQUEST['URL1']+'/setColTimesRowForm'" target="right">Setup Thumbnail Display</a>
	 </td></tr>

      </table>
    </span>
    <span metal:fill-slot="body">
     <iframe tal:condition="here/REQUEST/SESSION/filename" tal:attributes="src python:here.REQUEST['URL1']+'/thumblistNewWindow#'+here.REQUEST.SESSION['filename']" name="left"
     marginwidth="2" marginheight="2" width="100%" height="100%" scrolling="auto"/>
    
    <iframe tal:condition="not:here/REQUEST/SESSION/filename" tal:attributes="src python:here.REQUEST['URL1']+'/thumblistNewWindow'" name="left"
	   marginwidth="2" marginheight="2" width="100%" height="100%" scrolling="auto"/>
    
      </span>
   </body>
</html>

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