+<html metal:use-macro="here/main_template/macros/master"
+ xmlns:tal="http://xml.zope.org/namespaces/tal"
+ xmlns:metal="http://xml.zope.org/namespaces/metal"
+ xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <head>
+ <title>PayPal Log</title>
+ <meta http-equiv="content-type" content="text/html;charset=utf-8" />
+
+ </head>
+ <body>
+ <div metal:fill-slot="main_no_tabs" tal:omit-tag="">
+ <div tal:repeat="entry here/getPPLog">
+ <table border="1">
+ <tr tal:repeat="item entry/items">
+ <th tal:content="python:item[0]">key</th>
+ <td tal:content="python:item[1]">value</td>
+ </tr>
+ </table>
+ <br/>
+ </div>
+ </div>
+ </body>
+</html>