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">
6 <title>order printing list</title>
7 <meta http-equiv="content-type" content="text/html;charset=utf-8" />
8 <link metal:fill-slot="base"
9 rel="alternate" type="application/rss+xml"
10 tal:attributes="title here/title_or_id;
11 href string:${here/absolute_url}/order_printing_list/xml" />
14 <body i18n:domain="photoprint">
15 <div metal:fill-slot="main_no_tabs" tal:omit-tag="">
18 tal:define="rss string:${context/absolute_url}/order_printing_list/xml"
19 tal:attributes="value rss; size python:len(rss)"/>
20 <table class="listing" cellspacing="0">
22 <th i18n:translate="">Image</th>
23 <th i18n:translate="">File</th>
24 <th i18n:translate="">Format / type</th>
25 <th i18n:translate="">Quantity</th>
27 <tr tal:repeat="i options/infos" tal:attributes="class python:repeat['i'].odd() and 'odd' or 'even'">
29 <a tal:attributes="href i/url">
30 <img tal:attributes="src i/thumbUrl;
36 <td tal:content="i/id">image id</td>
37 <td tal:content="i/title" class="num">job title</td>
38 <td tal:content="i/quantity" class="num" style="border-right:1px solid black">quantity</td>