<?xml version="1.0" encoding="iso-8859-1" ?>
<document filename="report01.pdf">
  <title tal:content="template/title">Test Document</title>
  <author>Ulrich Eck</author>
  <subject>only for testing ...</subject>
  <content tal:define="price python:65.0; count python:10">
   <para>this is some paragraph text followed by an flowing image</para>
   <image filename="file:///tmp/net-labs.gif" height="1.46cm" width="6cm"/>
   <spacer height="30" />
   <table rowheight="0.7cm" colwidth="2cm" splitbyrow="1" repeatrows="1" repeatcols="0" style="StandardTable">
    <tr>
     <td colwidth="2cm">Amount</td><td colwidth="11cm">Description</td><td colwidth="3cm">Price</td>
    </tr>
    <tal:block tal:repeat="item python:range(count)">
     <tr>
      <td tal:content="item"/>
      <td>Some Description</td>
      <td tal:content="string:${price},- EUR"/>
     </tr>
    </tal:block>
    <tr tal:define="sum python:count*price">
     <td> </td>
     <td>Total</td>
     <td tal:content="string:${sum},- EUR"/>
    </tr>
   </table>
  </content>
</document>
