1 | <metal:html tal:define="info context/getStudyLevelInfo; |
---|
2 | is_so context/isSectionOfficer; |
---|
3 | is_ca info/is_ca; |
---|
4 | show_check_boxes info/show_check_boxes; |
---|
5 | is_student info/is_student; |
---|
6 | status_info info/status_info; |
---|
7 | review_state info/review_state; |
---|
8 | view_only info/view_only"> |
---|
9 | <metal:body use-macro="here/main_template/macros/master"> |
---|
10 | <metal:main fill-slot="main"> |
---|
11 | <span tal:condition="not: info"> |
---|
12 | <span tal:content="here/illegal_view" /> |
---|
13 | </span> |
---|
14 | <span tal:condition="info"> |
---|
15 | <h3>Validated Courses Slip</h3> |
---|
16 | <form action="." method="post" class="group"> |
---|
17 | <span tal:condition="info/carry_overs" tal:omit-tag=""> |
---|
18 | <h3>Carryover Courses</h3> |
---|
19 | <br /> |
---|
20 | <table tal:condition="python: 1" class="contentListing" width="100%" summary="content layout" id="folder_content"> |
---|
21 | <tr tal:repeat="row info/carry_overs" |
---|
22 | tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')"> |
---|
23 | <td width="78%" tal:content="row/title"></td> |
---|
24 | <td align="center" width="10%" tal:content="row/code"></td> |
---|
25 | <td align="center" width="2%">S<span tal:content="row/semester" /></td> |
---|
26 | <td align="center" width="2%" tal:content="row/credits"></td> |
---|
27 | <td align="center" width="8%" tal:content="row/grade|string:"></td> |
---|
28 | </tr> |
---|
29 | </table> |
---|
30 | </span> |
---|
31 | <h3>Session Courses</h3> |
---|
32 | <br /> |
---|
33 | <table class="contentListing" width="100%" summary="content layout" id="folder_content"> |
---|
34 | <tr tal:repeat="row info/normal" |
---|
35 | tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')"> |
---|
36 | <td width="78%" tal:content="row/title"></td> |
---|
37 | <td align="center" width="10%" tal:content="row/code"></td> |
---|
38 | <td align="center" width="2%">S<span tal:content="row/semester" /></td> |
---|
39 | <td align="center" width="2%" tal:content="row/credits"></td> |
---|
40 | <td align="center" width="8%" tal:content="row/coe|nothing"></td> |
---|
41 | </tr> |
---|
42 | <tr> |
---|
43 | <td colspan="1"></td> |
---|
44 | <td colspan="1"></td> |
---|
45 | <th colspan="2">Total Credits:</th> |
---|
46 | <td align="center" width="2%" tal:content="info/credits_total"></td> |
---|
47 | </tr> |
---|
48 | </table> |
---|
49 | </form> |
---|
50 | <span tal:condition="is_ca"> |
---|
51 | <br /><br /> |
---|
52 | <table width=100%> |
---|
53 | <tr > |
---|
54 | <td width=50%>Date:</td><td>Date:</td> |
---|
55 | </tr> |
---|
56 | </table> |
---|
57 | |
---|
58 | <br /><br /><br /><br /> |
---|
59 | <table width=100%> |
---|
60 | <tr > |
---|
61 | <td width=50% style="border-top-style:solid; border-top-width:1px; border-top-color:black"> Student</td> |
---|
62 | <td width=50% style="border-top-style:solid; border-top-width:1px; border-top-color:black">Course Adviser</td> |
---|
63 | </tr> |
---|
64 | </table> |
---|
65 | </span> |
---|
66 | </span> |
---|
67 | </metal:main> |
---|
68 | </metal:body> |
---|
69 | </metal:html> |
---|
70 | |
---|