Prise en charge du mode d'enregistrement anonyme avec mot de passe.
[photoprint.git] / skins / order_pplog.pt
1 <html metal:use-macro="here/main_template/macros/master"
2 xmlns:tal="http://xml.zope.org/namespaces/tal"
3 xmlns:metal="http://xml.zope.org/namespaces/metal"
4 xmlns:i18n="http://xml.zope.org/namespaces/i18n">
5 <head>
6 <title>PayPal Log</title>
7 <meta http-equiv="content-type" content="text/html;charset=utf-8" />
8
9 </head>
10 <body>
11 <div metal:fill-slot="main_no_tabs" tal:omit-tag="">
12 <div tal:repeat="entry here/getPPLog">
13 <table border="1">
14 <tr tal:repeat="item entry/items">
15 <th tal:content="python:item[0]">key</th>
16 <td tal:content="python:item[1]">value</td>
17 </tr>
18 </table>
19 <br/>
20 </div>
21 </div>
22 </body>
23 </html>