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

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

Tell the applicant where the student record was found.

File size: 3.3 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      Your record was found on the
54      <a i18n:name="portal_url"
55         tal:attributes="href python:view.results[0][1][1]">
56        <span tal:replace="python:view.results[0][1][0]">PORTAL</span>
57      </a>.
58      <br />
59      Login with your Student id and password
60      <a i18n:name="login_url"
61         tal:attributes="href python:view.results[0][1][1] + 'login'">
62        here
63      </a>
64      to check your student record status.
65      <tal:withemail tal:condition="python:view.results[0][0][0]">
66         Forgotten your password? Your email address matches the email
67         address stored in Kofa. Request a new password
68        <a i18n:name="changepw_url"
69           tal:attributes="href python:view.results[0][1][1] + 'changepw'">
70          here
71        </a>.
72      </tal:withemail>
73    </p>
74    <p i18n:translate="check_transcript_3"
75       tal:condition="python:not view.results[0][0][2]">
76      If you have not yet applied for your transcript, you can apply
77      <a  i18n:name="result_appl_url" tal:attributes="href view/appl_url2">here
78      </a>.
79    </p>
80    <p i18n:translate="check_transcript_4"
81       tal:condition="python:view.results[0][0][2]">
82      Your student record exists and your transcript has already
83      been released and sent to the address provided.
84      If you want your transcript to be resent, maybe to another destination,
85      you can proceed and directly apply for transcript delivery
86      <a  i18n:name="result_appl_url" tal:attributes="href view/appl_url2">here
87      </a> again.
88    </p>
89  </tal:results>
90</div>
Note: See TracBrowser for help on using the repository browser.