1 | <form method="post" enctype="multipart/form-data" |
---|
2 | tal:condition="not:view/result" i18n:domain="waeup.kofa"> |
---|
3 | <br /> |
---|
4 | <table class="form-table"> |
---|
5 | <tr> |
---|
6 | <td i18n:translate="" class="fieldname"> |
---|
7 | Registration Number or Applicant Id: |
---|
8 | </td> |
---|
9 | <td> |
---|
10 | <input class="textType half" type="text" name="unique_id" /> |
---|
11 | </td> |
---|
12 | </tr> |
---|
13 | <tr> |
---|
14 | <td i18n:translate="" class="fieldname"> |
---|
15 | Lastname (Surname): |
---|
16 | </td> |
---|
17 | <td> |
---|
18 | <input class="textType half" type="text" name="lastname" /> |
---|
19 | </td> |
---|
20 | </tr> |
---|
21 | </table> |
---|
22 | <div tal:content="structure view/captcha_code"></div> |
---|
23 | <br /> |
---|
24 | <input class="btn btn-primary" type="submit" name="SUBMIT" |
---|
25 | tal:attributes="value view/buttonname" /> |
---|
26 | </form> |
---|
27 | |
---|
28 | <div tal:condition="view/result" i18n:domain="waeup.kofa"> |
---|
29 | <br /> |
---|
30 | <tal:admitted condition="view/admitted"> |
---|
31 | <p i18n:translate="app_admitted"> |
---|
32 | <strong>Congratulations!</strong> You have been offered provisional |
---|
33 | admission into the <span i18n:name="entry_session" tal:replace="view/entry_session"></span> |
---|
34 | Academic Session of <span i18n:name="app_title" tal:replace="layout/getAppTitle"></span>. |
---|
35 | </p> |
---|
36 | <span tal:condition="view/course_admitted"> |
---|
37 | <table class="form-table"> |
---|
38 | <tr> |
---|
39 | <td style="width: 150px;" i18n:translate="">Name: |
---|
40 | </td> |
---|
41 | <td><span tal:replace="view/applicant/display_fullname"></span> |
---|
42 | </td> |
---|
43 | </tr> |
---|
44 | <tr> |
---|
45 | <td style="width: 150px;" i18n:translate="">Study Course: |
---|
46 | </td> |
---|
47 | <td><span tal:replace="view/longtitle"></span> |
---|
48 | </td> |
---|
49 | </tr> |
---|
50 | <tr> |
---|
51 | <td i18n:translate=""> Department: |
---|
52 | </td> |
---|
53 | <td><span tal:replace="view/department"></span> |
---|
54 | </td> |
---|
55 | </tr> |
---|
56 | <tr> |
---|
57 | <td i18n:translate="">Faculty: |
---|
58 | </td> |
---|
59 | <td><span tal:replace="view/faculty"></span> |
---|
60 | </td> |
---|
61 | </tr> |
---|
62 | </table> |
---|
63 | </span> |
---|
64 | </tal:admitted> |
---|
65 | |
---|
66 | <tal:created condition="view/created"> |
---|
67 | <br /> |
---|
68 | <p i18n:translate="appl_created"> |
---|
69 | Your student record has already been created for you. Your new |
---|
70 | user name (= student id) is: <strong><span i18n:name="student_id" |
---|
71 | tal:replace="view/student_id">STUDENT_ID</span></strong>. |
---|
72 | Your initial password is: <strong><span i18n:name="appl_number" |
---|
73 | tal:replace="view/password">PASSWORD</span></strong>. |
---|
74 | Please proceed to the <a i18n:name="login_url" |
---|
75 | tal:attributes="href python: view.url(layout.site, 'login')">login form</a>, |
---|
76 | enter your new login credentials and change your password immediately after login. |
---|
77 | </p> |
---|
78 | </tal:created> |
---|
79 | |
---|
80 | <tal:notadmitted condition="view/not_admitted"> |
---|
81 | <p i18n:translate=""> |
---|
82 | Sorry, you have not been offered admission. |
---|
83 | </p> |
---|
84 | </tal:notadmitted> |
---|
85 | |
---|
86 | <tal:submitted condition="view/submitted"> |
---|
87 | <p i18n:translate=""> |
---|
88 | Your submitted application is being processed. |
---|
89 | </p> |
---|
90 | </tal:submitted> |
---|
91 | |
---|
92 | <tal:notsubmitted condition="view/not_submitted"> |
---|
93 | <p i18n:translate=""> |
---|
94 | You have not yet submitted your application. |
---|
95 | </p> |
---|
96 | </tal:notsubmitted> |
---|
97 | |
---|
98 | </div> |
---|