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

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

Display name if admitted.

File size: 3.3 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<div tal:condition="view/result" i18n:domain="waeup.kofa">
36  <br />
37  <tal:admitted condition="view/admitted">
38    <p i18n:translate="app_admitted">
39      <strong>Congratulations!</strong> You have been offered provisional
40      admission into the <span  i18n:name="entry_session" tal:replace="view/entry_session"></span>
41      Academic Session of <span  i18n:name="app_title" tal:replace="layout/getAppTitle"></span>.
42    </p>
43    <span tal:condition="view/course_admitted">
44      <table class="form-table">
45        <tr>
46          <td style="width: 150px;" i18n:translate="">Name:
47          </td>
48          <td><span tal:replace="view/applicant/display_fullname"></span>
49          </td>
50        </tr>
51        <tr>
52          <td style="width: 150px;" i18n:translate="">Study Course:
53          </td>
54          <td><span tal:replace="view/longtitle"></span>
55          </td>
56        </tr>
57        <tr>
58          <td i18n:translate=""> Department:
59          </td>
60          <td><span tal:replace="view/department"></span>
61          </td>
62        </tr>
63        <tr>
64          <td i18n:translate="">Faculty:
65          </td>
66          <td><span tal:replace="view/faculty"></span>
67          </td>
68        </tr>
69      </table>
70    </span>
71  </tal:admitted>
72
73  <tal:created condition="view/created">
74    <br />
75    <p i18n:translate="appl_created">
76      Your student record has already been created for you. Your new
77      user name (= student id) is: <strong><span  i18n:name="student_id"
78      tal:replace="view/student_id">STUDENT_ID</span></strong>.
79      Your initial password is: <strong><span  i18n:name="appl_number"
80      tal:replace="view/password">PASSWORD</span></strong>.
81      Please proceed to the <a  i18n:name="login_url"
82      tal:attributes="href python: view.url(layout.site, 'login')">login form</a>,
83      enter your new login credentials and change your password immediately after login.
84    </p>
85  </tal:created>
86
87  <tal:notadmitted condition="view/not_admitted">
88    <p i18n:translate="">
89      Sorry, you have not been offered admission.
90    </p>
91  </tal:notadmitted>
92
93  <tal:submitted condition="view/submitted">
94    <p i18n:translate="">
95      Your submitted application is being processed.
96    </p>
97  </tal:submitted>
98
99  <tal:notsubmitted condition="view/not_submitted">
100    <p i18n:translate="">
101      You have not yet submitted your application.
102    </p>
103  </tal:notsubmitted>
104
105</div>
Note: See TracBrowser for help on using the repository browser.