Enregistrement / visualisation des échanges avec PayPal.
[photoprint.git] / skins / order_pplog.pt
diff --git a/skins/order_pplog.pt b/skins/order_pplog.pt
new file mode 100644 (file)
index 0000000..7f1e3de
--- /dev/null
@@ -0,0 +1,23 @@
+<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>