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

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

online payment beautified

  • Property svn:keywords set to Id
File size: 1.6 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
26        <table class="contentListing" width="100%">
27          <tr tal:repeat="row rows"
28              tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')">
29            <td>
30              <a href="view" tal:attributes="href string:${context/absolute_url}/${row/id}/waeup_document_view">
31                <strong tal:content="row/title" /></a>
32            </td>
33          </tr>
34        </table>
35        <br />
36        <div>
37       
38        <form tal:attributes="action string: ${context/absolute_url}/pay_online" method="post" class="group">
39         <input type="submit" class="context" value="Initiate School Fee Online Payment" />
40        </form> 
41
42        </div>       
43       
44       
45      </metal:main>
46    </metal:body>
47  </metal:block>
48</metal:html>   
Note: See TracBrowser for help on using the repository browser.