source: WAeUP_SRP/trunk/skins/waeup_futminna/goto_interswitch_form.pt @ 7956

Last change on this file since 7956 was 5795, checked in by Henrik Bettermann, 14 years ago

Implementation of a Late Registration Fee (FUTMinna only). This was more work and customization than expected. We urgently need a new consistent payment module.

File size: 1.9 KB
Line 
1<metal:body use-macro="here/main_template/macros/master">
2    <metal:main fill-slot="main"
3                tal:define="info options/info">
4               
5        <h3>Authorize Online Payment! </h3>
6        <br />
7               
8      <form method="post" action="pay_online"
9            tal:attributes="action info/action ">
10      <span tal:repeat="arg python:info['args'].items()"
11            tal:omit-tag="">
12          <input type="hidden" tal:attributes="name python:arg[0];value python:arg[1]" />
13      </span>         
14     
15      <span tal:replace = "structure info/xml_data" />
16     
17        <table>
18          <tr>
19            <td width="100px">
20            Payment:</td>
21            <td tal:content="info/type_description"></td>
22          </tr>
23          <tr>
24            <td>
25            Name:
26            </td>
27            <td tal:content="info/pay_bill_to" />
28          </tr>
29                         
30          <tr tal:condition="info/fee|nothing">
31            <td>
32            Fee:
33            </td>
34            <td> Naira <span tal:content="info/fee" /></td>
35          </tr>         
36          <tr tal:condition="info/surcharge|nothing">
37            <td >
38            Surcharge:
39            </td>
40            <td> Naira <span tal:content="info/surcharge" /></td>
41          </tr>             
42          <tr tal:condition="info/lrf|nothing">
43            <td width="200px">
44            Late Registration Fee:
45            </td>
46            <td> Naira <span tal:content="info/lrf" /></td>
47          </tr>
48          <tr>
49            <td >
50            Total Amount:
51            </td>
52            <td> Naira <span tal:content="info/amount" /></td>
53          </tr>
54         
55     
56        </table>
57        <br />
58        <input type="submit"
59               class="standalone"
60               name="goto_bank"
61               value="Proceed to Interswitch Payment Gateway"
62               />
63      </form>
64    </metal:main>
65</metal:body>
66
Note: See TracBrowser for help on using the repository browser.