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

Last change on this file since 17261 was 16758, checked in by Henrik Bettermann, 3 years ago

Set i18n:domain="waeup.kofa".

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