1 | <form method="post" enctype="multipart/form-data" tal:condition="not:view/result"> |
---|
2 | <br /> |
---|
3 | <table class="form-table"> |
---|
4 | <tr> |
---|
5 | <td i18n:translate="" class="fieldname"> |
---|
6 | Applicant Id: |
---|
7 | </td> |
---|
8 | <td> |
---|
9 | <input class="textType half" type="text" name="applicant_id" /> |
---|
10 | </td> |
---|
11 | </tr> |
---|
12 | <tr> |
---|
13 | <td i18n:translate="" class="fieldname"> |
---|
14 | Lastname (Surname): |
---|
15 | </td> |
---|
16 | <td> |
---|
17 | <input class="textType half" type="text" name="lastname" /> |
---|
18 | </td> |
---|
19 | </tr> |
---|
20 | <tr tal:condition="view/captcha_code"> |
---|
21 | <td i18n:translate=""> |
---|
22 | Please solve the captcha<br />to prevent misuse of this service: |
---|
23 | </td> |
---|
24 | <td> |
---|
25 | <div tal:content="structure view/captcha_code"></div> |
---|
26 | </td> |
---|
27 | </tr> |
---|
28 | </table> |
---|
29 | <br /> |
---|
30 | <input class="btn btn-primary" type="submit" name="SUBMIT" |
---|
31 | tal:attributes="value view/buttonname" /> |
---|
32 | </form> |
---|
33 | |
---|
34 | <div tal:condition="view/result"> |
---|
35 | |
---|
36 | <br /> |
---|
37 | |
---|
38 | <tal:admitted condition="view/admitted"> |
---|
39 | <p i18n:translate=""> |
---|
40 | <strong>Congratulations!</strong> You have been offered provisional |
---|
41 | admission into the <span tal:replace="view/entry_session"></span> |
---|
42 | Academic Session of <span tal:replace="layout/getAppTitle"></span>. |
---|
43 | </p> |
---|
44 | <span tal:condition="view/course_admitted"> |
---|
45 | <table class="form-table half"> |
---|
46 | <tr> |
---|
47 | <td i18n:translate="">Study Course: |
---|
48 | </td> |
---|
49 | <td><span tal:replace="view/longtitle"></span> |
---|
50 | </td> |
---|
51 | </tr> |
---|
52 | <tr> |
---|
53 | <td i18n:translate=""> Department: |
---|
54 | </td> |
---|
55 | <td><span tal:replace="view/department"></span> |
---|
56 | </td> |
---|
57 | </tr> |
---|
58 | <tr> |
---|
59 | <td i18n:translate="">Faculty: |
---|
60 | </td> |
---|
61 | <td><span tal:replace="view/faculty"></span> |
---|
62 | </td> |
---|
63 | </tr> |
---|
64 | </table> |
---|
65 | </span> |
---|
66 | </tal:admitted> |
---|
67 | |
---|
68 | <tal:notadmitted condition="view/not_admitted"> |
---|
69 | <p i18n:translate=""> |
---|
70 | Sorry, you have not been offered admission. |
---|
71 | </p> |
---|
72 | </tal:notadmitted> |
---|
73 | |
---|
74 | <tal:submitted condition="view/submitted"> |
---|
75 | <p i18n:translate=""> |
---|
76 | Your submitted application is being processed. |
---|
77 | </p> |
---|
78 | </tal:submitted> |
---|
79 | |
---|
80 | <tal:notsubmitted condition="view/not_submitted"> |
---|
81 | <p i18n:translate=""> |
---|
82 | You have not yet submitted your application. |
---|
83 | </p> |
---|
84 | </tal:notsubmitted> |
---|
85 | |
---|
86 | </div> |
---|