source: WAeUP_SRP/fceokene/waeup_custom/goto_interswitch_form.pt @ 3622

Last change on this file since 3622 was 2824, checked in by Henrik Bettermann, 17 years ago

customize forms

(can later be removed into base branch)

File size: 1.4 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        <table>
15          <tr>
16            <td width="100px">
17            Payment:</td>
18            <td tal:content="info/type_description"></td>
19          </tr>
20          <tr>
21            <td>
22            Name:
23            </td>
24            <td tal:content="info/pay_bill_to" />
25          </tr>
26          <tr>
27            <td >
28            Amount:
29            </td>
30            <td> Naira <span tal:content="info/amount" /></td>
31          </tr>
32          <tr>
33            <td >
34            Surcharge:
35            </td>
36            <td> Naira <span tal:content="info/surcharge" /></td>
37          </tr>         
38     
39        </table>
40        <br />
41        <input type="submit"
42               class="standalone"
43               name="goto_bank"
44               value="Proceed to Payment Gateway"
45               />
46      </form>
47    </metal:main>
48</metal:body>
49
Note: See TracBrowser for help on using the repository browser.