view zpt/viewer_main.zpt @ 76:47d76f050883

minorCVS: ----------------------------------------------------------------------
author dwinter
date Tue, 04 Nov 2008 23:03:56 +0100
parents 5c9837484085
children 3d95ba1bf535
line wrap: on
line source

<html tal:define="docinfo options/docinfo; pageinfo options/pageinfo; viewMode options/viewMode">
<head>
<link rel="stylesheet" href="template/docuviewer_css" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body tal:condition="docinfo/numPages">
<div tal:replace="structure python:here.template.head_main(docinfo=docinfo,viewMode=viewMode,pageinfo=pageinfo)"/>
<tal:block tal:condition="python:here.isAccessible(docinfo)">
<table border="0" width="100%" height="100%">
  <tr>
    <td width="300px" valign="top">
		<tal:block replace="structure python:here.template.thumbs_main(docinfo=docinfo,pageinfo=pageinfo)" /> 
    </td>
    <td width="100%" valign="top">
      <tal:block tal:content="structure python:here.template.image_main(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=options['mk'])" />
    </td>
  </tr>
</table>
</tal:block>
<tal:block tal:condition="not:python:here.isAccessible(docinfo)">
<div class="errortext">Sorry, access to this document is restricted.</div>
</tal:block>
</body>
<body tal:condition="not:docinfo/numPages">
<div class="errortext">Sorry, document doesn't exist.</div>
</body>
</html>