Changeset 2048
- Timestamp:
- 23 Jul 2007, 15:53:30 (17 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_epayment
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_epayment/payment_receipt.pt
r1783 r2048 1 1 <metal:body use-macro="here/slip_template/macros/master"> 2 2 <metal:main fill-slot="main" 3 tal:define="info context/getStudentBaseInfo; 4 info_doc context/getDocumentInfo"> 5 6 <span tal:condition="python: not info or not info_doc"> 3 tal:define="info context/getPaymentInfo;"> 4 <span tal:condition="python: not info"> 7 5 <span tal:content="here/illegal_view" /> 8 6 </span> 9 7 10 <span tal:condition="python: info and info_doc"> 11 12 <metal:block tal:condition="python:info_doc['doc'].resp_code in ('00','AP','IP')"> 8 <span tal:condition="python: info"> 9 <metal:block tal:condition="info/is_online_pmt"> 13 10 <h3>Online Payment Receipt</h3> 14 11 <br /> … … 43 40 /> 44 41 </metal:block> 45 46 47 48 <metal:block tal:condition="python:info_doc['doc'].resp_code=='SC'"> 42 <metal:block tal:condition="info/is_scratchcard_pmt"> 49 43 <h3>Scratch Card Payment Receipt</h3> 50 44 <br /> … … 79 73 </tr> 80 74 </table> 81 <table tal:define="pm python:info_doc['doc']">75 <table tal:define="pm nocall: info/payment"> 82 76 <tr> 83 77 <td width="220px">Access Code:</td> … … 103 97 </metal:block> 104 98 105 <metal:block tal:condition=" python:not info_doc['doc'].resp_code">99 <metal:block tal:condition="info/is_interrupted"> 106 100 <h3>Payment Process Interrupted!</h3> 107 101 <br /> 108 102 </metal:block> 109 103 110 <metal:block tal:condition=" python:info_doc['doc'].resp_code not in ('SC','00','AP','IP','')">111 <h3>Response from Bank: "<span tal:content=" python:info_doc['doc'].resp_desc" />"</h3>104 <metal:block tal:condition="info/unknown_code"> 105 <h3>Response from Bank: "<span tal:content="info/resp_desc" />"</h3> 112 106 <br /> 113 107 </metal:block>
Note: See TracChangeset for help on using the changeset viewer.