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

Last change on this file was 15016, checked in by Henrik Bettermann, 6 years ago

Show new recaptcha without comment.

File size: 3.1 KB
RevLine 
[13371]1<form method="post" enctype="multipart/form-data"
2    tal:condition="not:view/result" i18n:domain="waeup.kofa">
[13254]3<br />
4  <table class="form-table">
5    <tr>
6      <td i18n:translate="" class="fieldname">
[13363]7        Registration Number or Applicant Id:
[13254]8      </td>
9      <td>
[13363]10        <input class="textType half" type="text" name="unique_id" />
[13254]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>
[15016]22  <div tal:content="structure view/captcha_code"></div>
[13254]23  <br />
24  <input class="btn btn-primary" type="submit" name="SUBMIT"
25      tal:attributes="value view/buttonname" />
26</form>
27
[13371]28<div tal:condition="view/result" i18n:domain="waeup.kofa">
[13254]29  <br />
30  <tal:admitted condition="view/admitted">
[13370]31    <p i18n:translate="app_admitted">
[13254]32      <strong>Congratulations!</strong> You have been offered provisional
[13366]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>.
[13254]35    </p>
36    <span tal:condition="view/course_admitted">
[13358]37      <table class="form-table">
[13254]38        <tr>
[13384]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>
[13358]45          <td style="width: 150px;" i18n:translate="">Study Course:
[13254]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
[13356]66  <tal:created condition="view/created">
67    <br />
[13370]68    <p i18n:translate="appl_created">
[13365]69      Your student record has already been created for you. Your new
[13366]70      user name (= student id) is: <strong><span  i18n:name="student_id"
71      tal:replace="view/student_id">STUDENT_ID</span></strong>.
[13370]72      Your initial password is: <strong><span  i18n:name="appl_number"
[13366]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>,
[13365]76      enter your new login credentials and change your password immediately after login.
[13356]77    </p>
78  </tal:created>
79
[13254]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>
Note: See TracBrowser for help on using the repository browser.