source: WAeUP_SRP/trunk/skins/waeup_uniben/goto_interswitch_form.pt @ 7777

Last change on this file since 7777 was 7777, checked in by Henrik Bettermann, 13 years ago

Add button for going back to the payments view.

File size: 1.5 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          <tr>
30            <td >
31            Amount:
32            </td>
33            <td> Naira <span tal:content="info/amount" /></td>
34          </tr>
35             
36        </table>
37        <br />
38        <input type="submit"
39               class="standalone"
40               name="goto_bank"
41               value="Proceed to Interswitch Payment Gateway"
42               />
43      </form><br />
44      or<br /><br />
45      <form method="post" action=".">
46        <input type="submit"
47               class="standalone"
48               name="back"
49               value="go back to confirm eTranzact payment"
50               />
51      </form>
52    </metal:main>
53</metal:body>
54
Note: See TracBrowser for help on using the repository browser.