source: main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser_templates/applicantcheckstatus.pt @ 16827

Last change on this file since 16827 was 15570, checked in by Henrik Bettermann, 5 years ago

Update the congratulatory message.

File size: 2.7 KB
Line 
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    <tr tal:condition="view/captcha_code">
22      <td i18n:translate="">
23        Please solve the captcha<br />to prevent misuse of this service:
24      </td>
25      <td>
26        <div tal:content="structure view/captcha_code"></div>
27      </td>
28    </tr>
29  </table>
30  <br />
31  <input class="btn btn-primary" type="submit" name="SUBMIT"
32      tal:attributes="value view/buttonname" />
33</form>
34
35<p tal:condition="view/result" i18n:domain="waeup.kofa">
36  <br />
37  <tal:admitted condition="view/admitted">
38    <span i18n:translate="app_admitted">
39      <strong>Congratulations <span tal:replace="view/applicant/display_fullname"></span></strong>
40      <br /><br />
41      You have been offered provisional
42      admission into the <span  i18n:name="entry_session" tal:replace="view/entry_session"></span>
43      Academic Session of <span  i18n:name="app_title" tal:replace="layout/getAppTitle"></span>.
44    </span>
45  </tal:admitted>
46  <tal:created condition="view/created">
47    <span i18n:translate="appl_created">
48      Your student record has been created.
49      <br /><br />
50      Proceed to the <a  i18n:name="login_url"
51      tal:attributes="href python: view.url(layout.site, 'login')">login form</a>,
52      enter your new login credentials and change your password immediately after login.
53      Your new user name i.e. student id is: <strong><span  i18n:name="student_id"
54      tal:replace="view/student_id">STUDENT_ID</span></strong>.
55      Your initial password is: <strong><span  i18n:name="appl_number"
56      tal:replace="view/password">PASSWORD</span></strong>.
57      <br /><br />
58      Please you are expected to pay your acceptance fee to
59      start your online clearance process.
60      <br /><br />
61      Thank you.
62    </span>
63  </tal:created>
64
65  <tal:notadmitted condition="view/not_admitted">
66    <span i18n:translate="">
67      Sorry, you have not been offered admission.
68    </span>
69  </tal:notadmitted>
70
71  <tal:submitted condition="view/submitted">
72    <span i18n:translate="">
73      Your submitted application is being processed.
74    </span>
75  </tal:submitted>
76
77  <tal:notsubmitted condition="view/not_submitted">
78    <span i18n:translate="">
79      You have not yet submitted your application.
80    </span>
81  </tal:notsubmitted>
82
83</p>
Note: See TracBrowser for help on using the repository browser.