1 | <metal:html tal:define="info context/getStudentInfo;"> |
---|
2 | <span tal:condition="not: info"> |
---|
3 | <span tal:content="here/illegal_view" /> |
---|
4 | </span> |
---|
5 | <metal:block tal:condition="info"> |
---|
6 | <metal:body use-macro="here/main_template/macros/master"> |
---|
7 | <metal:main fill-slot="main"> |
---|
8 | <span tal:condition="not: info"> |
---|
9 | <span tal:content="here/illegal_view" /> |
---|
10 | </span> |
---|
11 | <span tal:condition="info" |
---|
12 | tal:define="review_state info/review_state; |
---|
13 | app_email info/app_doc/app_email|nothing; |
---|
14 | app_passport info/has_passport; |
---|
15 | data_complete python:app_passport and app_email; |
---|
16 | "> |
---|
17 | |
---|
18 | |
---|
19 | <div style="text-align: right" |
---|
20 | tal:condition="python:review_state in ('admitted', 'clearance_pin_entered', 'clearance_requested', 'cleared', 'objection_raised',)"> |
---|
21 | <a href="" target="slip" tal:attributes="href string:admission_slip" |
---|
22 | 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')"> |
---|
23 | <img tal:attributes="src string:${here/portal_url}/actionicon_print.png" /> |
---|
24 | Admission Slip |
---|
25 | </a> |
---|
26 | </div> |
---|
27 | |
---|
28 | |
---|
29 | <h3>This is to inform you that you have been provisionally admitted into |
---|
30 | <span tal:replace="here/portal_properties/institution_title" /> as follows: |
---|
31 | </h3> |
---|
32 | |
---|
33 | <br /> |
---|
34 | <span tal:omit-tag="" |
---|
35 | tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'], |
---|
36 | layout_mode='view_info', |
---|
37 | layout_id='student_application')" |
---|
38 | /> |
---|
39 | |
---|
40 | <h4>Your Study Course:</h4> |
---|
41 | <table tal:define="sc python: info['course_doc']"> |
---|
42 | <tr> |
---|
43 | <td width="180px">Certificate:</td> |
---|
44 | <td><span tal:content="sc/title" /></td> |
---|
45 | </tr> |
---|
46 | <tr> |
---|
47 | <td>Certificate ID:</td> |
---|
48 | <td tal:content="sc/study_course" /> |
---|
49 | </tr> |
---|
50 | <span tal:define="f_id sc/faculty; |
---|
51 | d_id sc/department; |
---|
52 | f_title context/academics/?f_id/LongTitle|string:Faculty not yet in Prospectus; |
---|
53 | d_title context/academics/?f_id/?d_id/LongTitle|string:Department not yet in Prospectus" |
---|
54 | > |
---|
55 | <tr> |
---|
56 | <td>Faculty:</td> |
---|
57 | <td tal:content="f_title" /> |
---|
58 | </tr> |
---|
59 | <tr> |
---|
60 | <td>Department:</td> |
---|
61 | <td><span tal:content="d_title" /></td> |
---|
62 | </tr> |
---|
63 | </span> |
---|
64 | </table> |
---|
65 | |
---|
66 | <br /> |
---|
67 | |
---|
68 | <strong tal:condition="python: False and 'pt' in info['app_doc'].entry_mode "></strong> |
---|
69 | <strong tal:condition="python: False and 'ft' in info['app_doc'].entry_mode ">Clearance commences on resumption and ends exactly two(2) weeks after resumption date. |
---|
70 | Any breach of this directive will result in forfeiture of the admission offer.</strong> |
---|
71 | |
---|
72 | <br /><br /> |
---|
73 | |
---|
74 | |
---|
75 | <form action="." method="post" class="group"> |
---|
76 | |
---|
77 | <input tal:condition="python:review_state in ('admitted', 'objection_raised',) and not data_complete" type="submit" name="application_edit:method" |
---|
78 | class="context" value="Continue" |
---|
79 | /> |
---|
80 | <input tal:condition="python:review_state in ('admitted', 'objection_raised',) and data_complete" type="submit" name="start_clearance:method" |
---|
81 | class="context" value="Continue" |
---|
82 | /> |
---|
83 | </form> |
---|
84 | </span> |
---|
85 | </metal:main> |
---|
86 | </metal:body> |
---|
87 | </metal:block> |
---|
88 | </metal:html> |
---|