source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantcheckstatus.pt @ 13356

Last change on this file since 13356 was 13356, checked in by Henrik Bettermann, 9 years ago

Tell if student record has been created.

File size: 2.5 KB
Line 
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:created condition="view/created">
69    <br />
70    <p i18n:translate="">
71      Your student record has already been created for you. Please
72      login and check your new student credentials.
73    </p>
74  </tal:created>
75
76  <tal:notadmitted condition="view/not_admitted">
77    <p i18n:translate="">
78      Sorry, you have not been offered admission.
79    </p>
80  </tal:notadmitted>
81
82  <tal:submitted condition="view/submitted">
83    <p i18n:translate="">
84      Your submitted application is being processed.
85    </p>
86  </tal:submitted>
87
88  <tal:notsubmitted condition="view/not_submitted">
89    <p i18n:translate="">
90      You have not yet submitted your application.
91    </p>
92  </tal:notsubmitted>
93
94</div>
Note: See TracBrowser for help on using the repository browser.