Annotation of ImageArchive/zpt/IFrameMain.zpt, revision 1.3

1.1       dwinter     1: <html metal:use-macro="here/main_template/macros/page">
                      2:   
                      3:   <body>
                      4:     <span metal:fill-slot="nav">
                      5:       <table border="0" width="100%">
                      6:    <tr>
                      7:      <td align="left">
                      8:        <a tal:attributes="href python:here.REQUEST['URL1']+'/addImage'" target="right">Add an Image</a>
                      9:      </td>
                     10:    </tr>
                     11:    <tr>
                     12:      <td align="left">
                     13:        <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>
                     14:     </td></tr>
                     15:    <tr>
                     16:      <td align="left">
                     17:        <a tal:attributes="href python:here.REQUEST['URL1']+'/setColTimesRowForm'" target="right">Setup Thumbnail Display</a>
                     18:     </td></tr>
1.2       dwinter    19: 
1.1       dwinter    20:       </table>
                     21:     </span>
                     22:     <span metal:fill-slot="body">
1.3     ! dwinter    23:      <iframe tal:condition="here/REQUEST/SESSION/filename" tal:attributes="src python:here.REQUEST['URL1']+'/thumblistNewWindow#'+here.REQUEST.SESSION['filename']" name="left"
        !            24:      marginwidth="2" marginheight="2" width="100%" height="100%" scrolling="auto"/>
        !            25:     
        !            26:     <iframe tal:condition="not:here/REQUEST/SESSION/filename" tal:attributes="src python:here.REQUEST['URL1']+'/thumblistNewWindow'" name="left"
        !            27:       marginwidth="2" marginheight="2" width="100%" height="100%" scrolling="auto"/>
        !            28:     
1.1       dwinter    29:       </span>
                     30:    </body>
                     31: </html>

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