source: WAeUP_SRP/trunk/skins/waeup_pins/pins_index_html.pt @ 543

Last change on this file since 543 was 543, checked in by Henrik Bettermann, 18 years ago

reorganisation part 2
themes modification will follow

File size: 729 bytes
Line 
1<metal:html>
2  <metal:body use-macro="here/main_template/macros/master">
3    <metal:main fill-slot="main">
4      <span tal:condition="isAnon">
5      </span> 
6      <span tal:condition="not:isAnon">
7        <h3>PIN Batches</h3>
8        <br />
9        <table tal:define="batches python: context.objectValues()">
10          <tr tal:repeat="batch batches">
11            <span tal:omit-tag="" tal:define="info python: context.getBatchInfo(batch)">
12            <td><a href="batch"
13                   tal:attributes="href string:${batch/absolute_url}/${info/id}"
14                   tal:content="info/title"></a></td>   
15            </span>
16          </tr>
17        </table>
18      </span>
19    </metal:main>
20  </metal:body>
21</metal:html>
Note: See TracBrowser for help on using the repository browser.