[1174] | 1 | <metal:html tal:define="info context/getSessionResults"> |
---|
[1171] | 2 | <metal:body use-macro="here/main_template/macros/master"> |
---|
| 3 | <metal:main fill-slot="main"> |
---|
[1174] | 4 | <div style="text-align: right"> |
---|
| 5 | <a href="" target="slip" tal:attributes="href string:session_results_slip" |
---|
[1171] | 6 | 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')"> |
---|
| 7 | <img tal:attributes="src string:${here/portal_url}/actionicon_print.png" /> |
---|
[1174] | 8 | Sessional Result Slip |
---|
[1171] | 9 | </a> |
---|
| 10 | </div> |
---|
[1174] | 11 | <h3>Session Results of <span tal:content="info/student/Firstname" /> |
---|
| 12 | <span tal:content="info/student/Middlename" /> |
---|
| 13 | <span tal:content="info/student/Lastname" /> |
---|
[1171] | 14 | </h3> |
---|
| 15 | <br /> |
---|
| 16 | <table> |
---|
| 17 | <tr> |
---|
[1174] | 18 | <th width="180px">Student ID:</th> |
---|
[1171] | 19 | <td> |
---|
[1174] | 20 | <span tal:replace="info/s_id" /> |
---|
[1171] | 21 | </td> |
---|
| 22 | </tr> |
---|
| 23 | |
---|
| 24 | <tr> |
---|
[1174] | 25 | <th width="150px">Matriculation Number:</th><td tal:content="info/student/matric_no" /> |
---|
[1171] | 26 | </tr> |
---|
| 27 | <tr> |
---|
[1174] | 28 | <th>Sex:</th><td tal:content="info/student/Sex" /> |
---|
[1171] | 29 | </tr> |
---|
| 30 | <tr> |
---|
[1179] | 31 | <th valign="top">Course of Study:</th><td tal:content="info/student/Coursemajor" /> |
---|
[1171] | 32 | </tr> |
---|
| 33 | <tr> |
---|
[1174] | 34 | <th>Level:</th><td tal:content="info/student/Level" /> |
---|
[1171] | 35 | </tr> |
---|
| 36 | </table> |
---|
| 37 | |
---|
| 38 | <table> |
---|
| 39 | <tr> |
---|
[1183] | 40 | <th width="180px">Verdict:</th><td tal:content="info/verdict" /> |
---|
[1171] | 41 | </tr> |
---|
| 42 | <tr> |
---|
[1183] | 43 | <th>Session:</th><td tal:content="info/session" /> |
---|
[1179] | 44 | </tr> |
---|
| 45 | <tr> |
---|
[1182] | 46 | <th valign="top">GPA:</th><td> <span tal:content="info/gpa" /> (on the basis of the data below) </td> |
---|
[1179] | 47 | </tr> |
---|
[1171] | 48 | </table> |
---|
| 49 | |
---|
| 50 | <br /> |
---|
| 51 | |
---|
| 52 | <table> |
---|
[1174] | 53 | <span tal:repeat="semester info/results"> |
---|
[1171] | 54 | <span tal:repeat="result semester"> |
---|
| 55 | <tr tal:condition="repeat/result/start"> |
---|
[1179] | 56 | <th colspan="2"> |
---|
| 57 | <span tal:replace="python: test(repeat['semester'].index,'Second','First')" /> Semester |
---|
| 58 | </th> |
---|
| 59 | <td>Grade</td> |
---|
| 60 | <td>Weight</td> |
---|
| 61 | <td>Credits</td> |
---|
| 62 | </tr> |
---|
[1171] | 63 | <tr> |
---|
[1179] | 64 | <td valign="top" width="80px" tal:content="result/CosCode" /> |
---|
| 65 | <td valign="top" tal:content="result/title" /> |
---|
| 66 | <td valign="top" width="50px" align="center" tal:content="result/GRADE" /> |
---|
| 67 | <td valign="top" width="50px" align="center" tal:content="result/WEIGHT" /> |
---|
| 68 | <td valign="top" width="50px" align="center" tal:content="result/credits" /> |
---|
| 69 | |
---|
[1171] | 70 | </tr> |
---|
| 71 | </span> |
---|
[1179] | 72 | <tr><td colspan="5"> </td></tr> |
---|
[1171] | 73 | </span> |
---|
| 74 | </table> |
---|
| 75 | <br /> |
---|
| 76 | <form action="" method="post" |
---|
| 77 | tal:attributes="action string:${context/portal_url}/personal_edit_form"> |
---|
| 78 | <input type="submit" |
---|
| 79 | class="standalone" |
---|
| 80 | value="Continue to Personal Data Page!" |
---|
| 81 | name="submit" /> |
---|
| 82 | </form> |
---|
| 83 | </metal:main> |
---|
| 84 | </metal:body> |
---|
| 85 | </metal:html> |
---|
[1183] | 86 | |
---|