source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/checktranscriptstatus.pt @ 16281

Last change on this file since 16281 was 16176, checked in by Henrik Bettermann, 4 years ago

Modify check transcript page.

File size: 3.1 KB
Line 
1<p tal:condition="not:view/button" i18n:translate="checktranscript">
2  No previous Kofa record and first time applicant for transcript? Click
3  <a i18n:name="no_result_appl_url" tal:attributes="href view/appl_url1">here</a>
4  to proceed. <br /><br />
5  You don't know or you have already requested for transcript?
6  You can check your transcript status by submitting the form below.
7  Depending on the existence and status of your student record in Kofa you
8  will be redirected to the appropriate application form.
9</p>
10
11<form method="post" enctype="multipart/form-data"
12    tal:condition="not:view/button" i18n:domain="waeup.kofa">
13  <table class="form-table">
14    <tr>
15      <td i18n:translate="" class="fieldname">
16        Student Id, Registration Number or <br />Matric Number:
17      </td>
18      <td>
19        <input class="textType half" type="text" name="unique_id" />
20      </td>
21    </tr>
22    <tr>
23      <td i18n:translate="" class="fieldname">
24        Email Address:
25      </td>
26      <td>
27        <input class="textType half" type="text" name="email" />
28      </td>
29    </tr>
30  </table>
31  <div tal:content="structure view/captcha_code"></div>
32  <br />
33  <input class="btn btn-primary" type="submit" name="SUBMIT"
34      tal:attributes="value view/buttonname" />
35</form>
36
37<div tal:condition="view/button" i18n:domain="waeup.kofa">
38  <br />
39  <tal:noresults condition="not: view/results">
40    <br />
41    <p i18n:translate="check_transcript_1">
42      No student record was found in Kofa. Your record has to be created.
43      You can apply for your transcript
44      <a  i18n:name="no_result_appl_url" tal:attributes="href view/appl_url1">here
45      </a>.
46    </p>
47  </tal:noresults>
48
49  <tal:results condition="view/results">
50    <br />
51    <p i18n:translate="check_transcript_2"
52       tal:condition="python:not view.results[0][0][2]">
53      Login with your Student id and password
54      <a i18n:name="login_url"
55         tal:attributes="href python:view.results[0][1][1] + 'login'">
56        here
57      </a>
58      to check your student record status.
59      <tal:withemail tal:condition="python:view.results[0][0][0]">
60         Forgotten your password? Your email address matches the email
61         address stored in Kofa. Request a new password
62        <a i18n:name="changepw_url"
63           tal:attributes="href python:view.results[0][1][1] + 'changepw'">
64          here
65        </a>.
66      </tal:withemail>
67    </p>
68    <p i18n:translate="check_transcript_3"
69       tal:condition="python:not view.results[0][0][2]">
70      You can apply for your transcript
71      <a  i18n:name="result_appl_url" tal:attributes="href view/appl_url2">here
72      </a>.
73    </p>
74    <p i18n:translate="check_transcript_4"
75       tal:condition="python:view.results[0][0][2]">
76      Your student record exists and your transcript has already
77      been released and sent to the address provided.
78      If you want your transcript to be resent, maybe to another destination,
79      you can proceed and directly apply for transcript delivery
80      <a  i18n:name="result_appl_url" tal:attributes="href view/appl_url2">here
81      </a> again.
82    </p>
83  </tal:results>
84</div>
Note: See TracBrowser for help on using the repository browser.