1 | <metal:body use-macro="here/slip_template/macros/master"> |
---|
2 | <metal:main fill-slot="main" |
---|
3 | tal:define="info context/getClearanceInfo"> |
---|
4 | <span tal:condition="not: info"> |
---|
5 | <span tal:content="here/illegal_view" /> |
---|
6 | </span> |
---|
7 | <span tal:omit-tag="" tal:condition="info"> |
---|
8 | <div style="text-align: right" tal:condition="info/penalty"> |
---|
9 | <strong>Late Clearance!</strong></div> |
---|
10 | |
---|
11 | <h3>Clearance/Eligibility Slip</h3> |
---|
12 | <br /> |
---|
13 | <span tal:omit-tag="" |
---|
14 | tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'], |
---|
15 | layout_mode='view_info', |
---|
16 | layout_id='student_application_fe')" |
---|
17 | /> |
---|
18 | |
---|
19 | <table tal:define="sc python: info['course_doc']"> |
---|
20 | <tr> |
---|
21 | <td width="180px">Certificate:</td> |
---|
22 | <td><span tal:content="sc/title" /></td> |
---|
23 | </tr> |
---|
24 | <tr> |
---|
25 | <td>Certificate ID:</td> |
---|
26 | <td tal:content="sc/study_course" /> |
---|
27 | </tr> |
---|
28 | <span tal:omit-tag="" |
---|
29 | tal:define="f_id sc/faculty; |
---|
30 | d_id sc/department; |
---|
31 | f_title context/academics/?f_id/Title|string:Faculty not yet in Prospectus; |
---|
32 | d_title context/academics/?f_id/?d_id/Title|string:Department not yet in Prospectus" |
---|
33 | > |
---|
34 | <tr> |
---|
35 | <td>Faculty:</td> |
---|
36 | <td tal:content="f_title" /> |
---|
37 | </tr> |
---|
38 | <tr> |
---|
39 | <td>Department:</td> |
---|
40 | <td><span tal:content="d_title" /></td> |
---|
41 | </tr> |
---|
42 | </span> |
---|
43 | </table> |
---|
44 | |
---|
45 | <span tal:omit-tag="" |
---|
46 | tal:content="structure python: info['clear_doc'].render(proxy=info['clear_doc'], |
---|
47 | layout_mode='view', |
---|
48 | layout_id='student_clearance_fe')" |
---|
49 | /> |
---|
50 | <span tal:condition="not:context/isStudent"> |
---|
51 | <br /><br /> |
---|
52 | <table width=100%> |
---|
53 | <tr > |
---|
54 | <td width=50%>Date:</td><td>Date:</td> |
---|
55 | </tr> |
---|
56 | </table> |
---|
57 | |
---|
58 | <br /><br /><br /><br /> |
---|
59 | <table width=100%> |
---|
60 | <tr > |
---|
61 | <td width=50% style="border-top-style:solid; border-top-width:1px; border-top-color:black"> Student</td> |
---|
62 | <td width=50% style="border-top-style:solid; border-top-width:1px; border-top-color:black">Clearance Officer</td> |
---|
63 | </tr> |
---|
64 | </table> |
---|
65 | </span> |
---|
66 | |
---|
67 | </span> |
---|
68 | </metal:main> |
---|
69 | </metal:body> |
---|