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 | <h3>This is to inform you that you have been provisionally admitted into University of Benin as follows: |
---|
12 | </h3> |
---|
13 | |
---|
14 | <h4>Application Data</h4> |
---|
15 | <span tal:omit-tag="" |
---|
16 | tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'], |
---|
17 | layout_mode='view_info', |
---|
18 | layout_id='student_application_fe')" |
---|
19 | /> |
---|
20 | |
---|
21 | <h4>Study Course</h4> |
---|
22 | <table tal:define="sc python: info['course_doc']"> |
---|
23 | <tr> |
---|
24 | <td width="180px">Certificate:</td> |
---|
25 | <td><span tal:content="sc/title" /></td> |
---|
26 | </tr> |
---|
27 | <tr> |
---|
28 | <td>Certificate ID:</td> |
---|
29 | <td tal:content="sc/study_course" /> |
---|
30 | </tr> |
---|
31 | <tr> |
---|
32 | <td>Faculty ID:</td> |
---|
33 | <td tal:content="sc/faculty" /> |
---|
34 | </tr> |
---|
35 | <tr> |
---|
36 | <td>Department ID:</td> |
---|
37 | <td><span tal:content="sc/department" /></td> |
---|
38 | </tr> |
---|
39 | </table> |
---|
40 | |
---|
41 | |
---|
42 | <form action="." method="post" class="group" |
---|
43 | > |
---|
44 | <table width="100%" cellspacing="0" cellpadding="2" |
---|
45 | class="folderButtons"> |
---|
46 | <tr> |
---|
47 | <td align="left" valign="top" rowspan="3"></td> |
---|
48 | <td align="left" valign="top"> |
---|
49 | <input type="submit" name="defer_admission:method" value="Reject/Defer Admission" |
---|
50 | class="destructive" |
---|
51 | tal:attributes="onclick python:'return window.confirm(\'%s\')' % |
---|
52 | (cpsmcat('Confirm that you want to reject/defer your admision.'), )" |
---|
53 | /> |
---|
54 | <input type="submit" name="application_edit:method" |
---|
55 | class="context" value="Continue" |
---|
56 | /> |
---|
57 | </td> |
---|
58 | </tr> |
---|
59 | </table> |
---|
60 | </form> |
---|
61 | </span> |
---|
62 | </metal:main> |
---|
63 | </metal:body> |
---|
64 | </metal:html> |
---|