1 | <metal:body use-macro="here/main_template/macros/master"> |
---|
2 | <metal:main fill-slot="main" |
---|
3 | tal:define="info context/getAccommodationInfo"> |
---|
4 | <span tal:condition="python: not info or not info['acco']"> |
---|
5 | <span tal:content="here/illegal_view" /> |
---|
6 | </span> |
---|
7 | <span tal:condition="python: info and info['acco']"> |
---|
8 | |
---|
9 | <div style="text-align: right"> |
---|
10 | <a href="" target="slip" tal:attributes="href string:accommodation_slip" |
---|
11 | onclick="javascript:window.open('','slip','width=600, height=700, directories=no, toolbar=no, location=no, menubar=yes, scrollbars=yes, status=no, resizable=no, dependent=no')"> |
---|
12 | <img tal:attributes="src string:${here/portal_url}/actionicon_print.png" /> |
---|
13 | Accommodation Slip |
---|
14 | </a> |
---|
15 | </div> |
---|
16 | <a href="" |
---|
17 | tal:attributes="href string:${here/academicsParent}"> |
---|
18 | <img tal:attributes="src string:${here/portal_url}/arrow_up.gif"/> |
---|
19 | Up one level |
---|
20 | </a> |
---|
21 | <h3>My Accommodation Record</h3> |
---|
22 | <br /> |
---|
23 | <span tal:omit-tag="" |
---|
24 | tal:content="structure python: info['acco_doc'].render(proxy=info['acco_doc'], |
---|
25 | layout_mode='view', |
---|
26 | layout_id='student_accommodation_fe')" |
---|
27 | /> |
---|
28 | <table> |
---|
29 | <tr> |
---|
30 | <td width="220px">Level:</td><td tal:content="info/level" /> |
---|
31 | </tr> |
---|
32 | <tr tal:condition="not: info/maintenance_paid"> |
---|
33 | <form action="pay_interswitch_acco" method="post" |
---|
34 | enctype="multipart/form-data" class="workflow" |
---|
35 | > |
---|
36 | <input type="hidden" |
---|
37 | name="paytype" |
---|
38 | value="HOM" |
---|
39 | /> |
---|
40 | <td colspan="2"> |
---|
41 | <input type="submit" |
---|
42 | class="standalone" |
---|
43 | name="cpsdocument_create_button" |
---|
44 | value="Pay Maintenance Fee online" |
---|
45 | /> |
---|
46 | </td> |
---|
47 | </form> |
---|
48 | </tr> |
---|
49 | </table> |
---|
50 | </span> |
---|
51 | </metal:main> |
---|
52 | </metal:body> |
---|
53 | |
---|