source: WAeUP_SRP/trunk/skins/waeup_student/entry_results_anon_view.pt @ 1220

Last change on this file since 1220 was 1169, checked in by joachim, 18 years ago

display_session_results now asks for jamb_reg_no
set_access_data uses this information
permission mappings for new states in waeup_student_wf added
set_access_data is now called from a form

File size: 3.0 KB
Line 
1<metal:html tal:define="pume options/pume;
2                      result_type pume/result_type|string:PU">
3  <metal:body use-macro="here/main_template/macros/master">
4    <metal:main fill-slot="main">
5
6        <span tal:condition="python:result_type =='PU'">       
7        <div style="text-align: right">
8        <a href="" target="slip" tal:attributes="href string:entry_results_anon_slip?nr=${pume/jamb_reg_no}"
9            onclick="javascript:window.open('','slip','width=600, height=700, directories=no, toolbar=no, location=no, menubar=yes, scrollbars=yes, status=no, resizable=no, dependent=no')">
10            <img tal:attributes="src string:${here/portal_url}/actionicon_print.png" />
11            PUME Result Slip
12        </a>
13        </div>
14          <h3>PUME Results of <span tal:content="pume/name" /></h3>
15        </span>       
16                     
17        <span tal:condition="python:result_type == 'DE'">
18        <div style="text-align: right">
19        <a href="" target="slip" tal:attributes="href string:entry_results_anon_slip?nr=${pume/jamb_reg_no}"
20            onclick="javascript:window.open('','slip','width=600, height=700, directories=no, toolbar=no, location=no, menubar=yes, scrollbars=yes, status=no, resizable=no, dependent=no')">
21            <img tal:attributes="src string:${here/portal_url}/actionicon_print.png" />
22            PDE Result Slip
23        </a>
24        </div>         
25          <h3>PDE Results of <span tal:content="pume/name" /></h3>
26        </span>     
27       
28       <br />             
29       
30       <strong  tal:condition="python:pume.status=='Admitted'">You have been provisionally admitted into University of Benin.
31                                                               Please check your admission details!
32                                                               <br /><br /></strong>             
33       <strong  tal:condition="python:pume.status=='Not Admitted'">Sorry, you have not been admitted.
34                                                                   Do not check admission details! There are no more data available.
35                                                               <br /><br /></strong>                                                   
36                     
37       <table>
38        <tr>
39          <th>JAMB Registration Number:</th><td tal:content="pume/jamb_reg_no"></td>
40        </tr>
41        <tr>
42          <th>Name:</th><td tal:content="pume/name"></td>
43        </tr>
44        <tr>
45          <th>Sex:</th><td tal:content="pume/sex"></td>
46        </tr>       
47        <tr>
48          <th>Score:</th><td tal:content="pume/score"></td>
49        </tr>
50        <tr>
51          <th>Status:</th><td tal:content="pume/status"></td>
52        </tr>
53        <tr>
54          <th>Course Requested:</th><td> <span tal:content="pume/course" /></td>
55        </tr>
56        <tr>
57          <th>Course Code:</th><td><span tal:content="pume/course_code_org" /></td>
58        </tr>
59      </table>
60    </metal:main>
61  </metal:body>
62</metal:html>
Note: See TracBrowser for help on using the repository browser.