1 | <metal:html tal:define="info context/getStudentInfo"> |
---|
2 | <metal:body use-macro="here/main_template/macros/master"> |
---|
3 | <metal:main fill-slot="main"> |
---|
4 | <span tal:condition="not: info"> |
---|
5 | <metal:block use-macro="here/error_not_found/macros/not_found" /> |
---|
6 | </span> |
---|
7 | <span tal:condition="info" |
---|
8 | tal:define="review_state info/review_state"> |
---|
9 | |
---|
10 | |
---|
11 | <h2>You are admitted to the University of Benin!</h2> |
---|
12 | |
---|
13 | <h3>Your Study Course</h3> |
---|
14 | <br /> |
---|
15 | <table tal:define="sc python: info['course_doc']"> |
---|
16 | <tr> |
---|
17 | <td>Certificate:</td> |
---|
18 | <td><span tal:content="sc/title" /></td> |
---|
19 | </tr> |
---|
20 | <tr> |
---|
21 | <td>Certificate ID:</td> |
---|
22 | <td tal:content="sc/study_course" /> |
---|
23 | </tr> |
---|
24 | <tr> |
---|
25 | <td>Faculty ID:</td> |
---|
26 | <td tal:content="sc/faculty" /> |
---|
27 | </tr> |
---|
28 | <tr> |
---|
29 | <td>Department ID:</td> |
---|
30 | <td><span tal:content="sc/department" /></td> |
---|
31 | </tr> |
---|
32 | </table> |
---|
33 | |
---|
34 | <h3>Your Application Record</h3> |
---|
35 | <br /> |
---|
36 | <span tal:omit-tag="" |
---|
37 | tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'], |
---|
38 | layout_mode='view', |
---|
39 | layout_id='student_application_fe')" |
---|
40 | /> |
---|
41 | |
---|
42 | <h3>Your PUME Results</h3> |
---|
43 | <br /> |
---|
44 | <span tal:omit-tag="" |
---|
45 | tal:condition="python:info['pume'] is not None" |
---|
46 | tal:content="structure python: info['pume_doc'].render(proxy=info['pume_doc'], |
---|
47 | layout_mode='view', |
---|
48 | layout_id='student_pume_fe')" |
---|
49 | /> |
---|
50 | |
---|
51 | <form action="." method="post" class="group" |
---|
52 | > |
---|
53 | <table width="100%" cellspacing="0" cellpadding="2" |
---|
54 | class="folderButtons"> |
---|
55 | <tr> |
---|
56 | <td align="left" valign="top" rowspan="3"></td> |
---|
57 | <td align="left" valign="top"> |
---|
58 | <input type="submit" name="defer_admission:method" value="Reject/Defer Admission" |
---|
59 | class="destructive" |
---|
60 | tal:attributes="onclick python:'return window.confirm(\'%s\')' % |
---|
61 | (cpsmcat('Confirm that you want to reject/defer your admision.'), )" |
---|
62 | /> |
---|
63 | <input type="submit" name="application_edit:method" |
---|
64 | class="context" value="Continue" |
---|
65 | /> |
---|
66 | </td> |
---|
67 | </tr> |
---|
68 | </table> |
---|
69 | </form> |
---|
70 | </span> |
---|
71 | </metal:main> |
---|
72 | </metal:body> |
---|
73 | </metal:html> |
---|