source: WAeUP_SRP/branches/srpp_on_branch/skins/waeup_epayment/payments_view.pt @ 4056

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

new student statistics
sc payment beautified
student workflow state and transition renamed

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
1<metal:html tal:define="info context/getPaymentsFolderInfo;
2             is_student context/isStudent;
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="not:is_student">
18            <span tal:content="info/student_name" />:
19          </span>
20          <span tal:condition="is_student">
21            My
22          </span>         
23          <span tal:content="here/title_or_id" />
24        </h3>
25        <br />
26      </metal:block>
27      <metal:main fill-slot="main">
28
29        <table class="contentListing" width="100%">
30          <tr tal:repeat="row rows"
31              tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')">
32            <td>
33              <a href="view" tal:attributes="href string:${context/absolute_url}/${row/id}/waeup_document_view">
34                <strong tal:content="row/title" /></a>
35            </td>
36          </tr>
37        </table>
38        <br />
39        <div>
40       
41        <form tal:attributes="action string: ${context/absolute_url}/pay_online" method="post" class="group">
42         <input type="submit" name="epayment"
43                class="context"
44                value="Initiate School Fee Online Payment"
45                />
46        </form> 
47
48        </div>       
49       
50       
51      </metal:main>
52    </metal:body>
53  </metal:block>
54</metal:html>   
Note: See TracBrowser for help on using the repository browser.