source: WAeUP_SRP/trunk/skins/waeup_epayment/payments_view.pt @ 1238

Last change on this file since 1238 was 1238, checked in by joachim, 18 years ago

more payments things

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1<metal:html tal:define="info context/getPaymentsFolderInfo;
2             is_so info/is_so;
3             rows info/payments"
4             >
5  <span tal:condition="not: info">
6    <span tal:content="here/illegal_view" />
7  </span>
8  <metal:block tal:condition="info">                         
9    <metal:body use-macro="here/waeup_content_master/macros/master">
10      <metal:block fill-slot="header">
11        <a href=""
12           tal:attributes="href string:${context/aq_parent/absolute_url}">
13          <img tal:attributes="src string:${here/portal_url}/arrow_up.gif"/>
14          Up one level
15        </a>
16        <h3>
17          <span tal:condition="python:is_so">
18            <span tal:content="info/student_name" />:
19          </span>
20          <span tal:content="here/title_or_id" />
21        </h3>
22        <br />
23      </metal:block>
24      <metal:main fill-slot="main">
25        <table class="contentListing" width="100%">     
26          <tr tal:repeat="row rows"
27              tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')">
28            <td>
29              <a href="view" tal:attributes="href string:${context/absolute_url}/${row/id}">
30                <strong tal:content="row/title" /></a>
31            </td>
32          </tr>
33        </table>
34      </metal:main>
35    </metal:body>
36  </metal:block>
37</metal:html>   
Note: See TracBrowser for help on using the repository browser.