[1593] | 1 | <metal:body use-macro="here/main_template/macros/master"> |
---|
| 2 | <metal:main fill-slot="main" |
---|
| 3 | tal:define="info context/getClearanceInfo"> |
---|
[837] | 4 | <span tal:condition="not: info"> |
---|
[1096] | 5 | <span tal:content="here/illegal_view" /> |
---|
[837] | 6 | </span> |
---|
| 7 | <span tal:condition="info"> |
---|
[1144] | 8 | <div style="text-align: right" tal:condition="info/penalty"> |
---|
| 9 | <strong>Late Clearance!</strong></div> |
---|
[837] | 10 | |
---|
[877] | 11 | <h3>Clearance/Eligibility Slip</h3> |
---|
[837] | 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 | /> |
---|
[1044] | 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:define="f_id sc/faculty; |
---|
| 29 | d_id sc/department; |
---|
| 30 | f_title context/academics/?f_id/Title|string:Faculty not yet in Prospectus; |
---|
| 31 | d_title context/academics/?f_id/?d_id/Title|string:Department not yet in Prospectus" |
---|
| 32 | > |
---|
| 33 | <tr> |
---|
| 34 | <td>Faculty:</td> |
---|
| 35 | <td tal:content="f_title" /> |
---|
| 36 | </tr> |
---|
| 37 | <tr> |
---|
| 38 | <td>Department:</td> |
---|
| 39 | <td><span tal:content="d_title" /></td> |
---|
| 40 | </tr> |
---|
| 41 | </span> |
---|
| 42 | </table> |
---|
| 43 | |
---|
[837] | 44 | <span tal:omit-tag="" |
---|
| 45 | tal:content="structure python: info['clear_doc'].render(proxy=info['clear_doc'], |
---|
| 46 | layout_mode='view', |
---|
| 47 | layout_id='student_clearance_fe')" |
---|
| 48 | /> |
---|
[1061] | 49 | <span tal:condition="not:context/isStudent"> |
---|
[1040] | 50 | <br /><br /> |
---|
| 51 | <table width=100%> |
---|
| 52 | <tr > |
---|
| 53 | <td width=50%>Date:</td><td>Date:</td> |
---|
| 54 | </tr> |
---|
| 55 | </table> |
---|
| 56 | |
---|
| 57 | <br /><br /><br /><br /> |
---|
[1069] | 58 | <table width=100%> |
---|
[1040] | 59 | <tr > |
---|
[1069] | 60 | <td width=50% style="border-top-style:solid; border-top-width:1px; border-top-color:black"> Student</td> |
---|
| 61 | <td width=50% style="border-top-style:solid; border-top-width:1px; border-top-color:black">Clearance Officer</td> |
---|
[1040] | 62 | </tr> |
---|
[1061] | 63 | </table> |
---|
| 64 | </span> |
---|
[1040] | 65 | |
---|
[837] | 66 | </span> |
---|
| 67 | </metal:main> |
---|
[1593] | 68 | </metal:body> |
---|