source: WAeUP_SRP/trunk/skins/waeup_ois/academic_report_slip.pt @ 4098

Last change on this file since 4098 was 4098, checked in by Henrik Bettermann, 15 years ago
  • implement date fileds in portal base configuration
  • ois: use date1-3 fields for principal's signature on academic_report_slip
File size: 4.7 KB
Line 
1<metal:body use-macro="here/slip_template/macros/master">
2<metal:main fill-slot="main" tal:define="info context/getStudyLevelInfo;" > 
3<span tal:condition="not: info"> 
4    <span tal:content="here/illegal_view" />
5</span>
6<span tal:condition="info" tal:omit-tag=""> 
7    <span tal:omit-tag=""   tal:define="is_so info/is_so;   
8                                       is_ca info/is_ca;   
9                                       show_check_boxes info/show_check_boxes;   
10                                       is_student info/is_student;     
11                                       validated info/validated;
12                                       term_complete info/complete1;
13                                       term options/term;
14                                       sem_series python:(('Term One','normal1','complete1','score_calc_average_1','yga1','counter1','date1'),
15                                                          ('Term Two','normal2','complete2','score_calc_average_2','yga2','counter2','date2'),
16                                                          ('Term Three','normal3','complete3','score_calc_average_3','yga3','counter3','date3'));
17                                       sem python:sem_series[int(term)-1];
18                                       ">
19                                         
20        <h3> <span tal:content="info/session" /> <span tal:content="python:sem[0]" /> Academic Report (<span tal:content="info/level_str" />)
21            </h3>  <br />
22        <span tal:omit-tag="" tal:content="structure python: info['app_doc'].render(proxy=info['app_doc'],       
23                                                 layout_mode='view_info',       
24                                                 layout_id='student_application')"       />
25
26       
27        <span tal:condition="python:info[sem[2]]" tal:omit-tag="">
28       
29        <table>
30            <tr>
31                <td width="180px">Passmark:</td><td>55%</td>
32            </tr>       
33            <tr>
34                <td>Student's Average:</td><td tal:content="python:info[sem[3]]"></td>
35            </tr>
36            <tr>
37                <td>Year Group Average:</td><td> <span tal:content="python:info[sem[4]]" /> (<span tal:content="python:info[sem[5]]" /> overall marks)</td>
38            </tr>           
39        </table>
40        <br />   <br />                 
41       
42            <table class="contentListing" id="folder_content" width="100%">
43                    <tr tal:condition="python:info[sem[1]]">
44                        <th />
45                        <th align='center'>Attitude To <br />Learning</th> 
46                        <th align='center'>CA 1 <br />Marks</th>
47                        <th align='center'>CA 2 <br />Marks</th>   
48                        <th align='center'>Exam <br />Marks</th>             
49                        <th align='center'>Overall <br />Marks</th>
50                        <th align='center'>Grade</th>
51                        <th tal:condition="is_so" align='center'>
52                        </th>
53                    </tr>
54                    <tr tal:repeat="row python:info[sem[1]]"       
55                        tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')">
56                        <td tal:content="row/title"></td>
57                        <td align="center" tal:content="python:context.portal_vocabularies.pastoral_grade.get(row['atl'])"></td>
58                        <td align="center" tal:content="row/ca1"></td>
59                        <td align="center" tal:content="row/ca2"></td>
60                        <td align="center" tal:content="row/exam"></td>
61                        <td align="center" tal:content="row/score_calc"></td>
62                        <td align="center" tal:content="row/grade"></td>
63                    </tr>
64                    <tr><td>&nbsp;</td>
65                    </tr>
66            </table>
67
68
69        <span tal:condition="python:True">      <br /><br />
70            <table width=100%>
71                <tr >
72                    <td width=50%>&nbsp;</td> 
73                    <td width=20%>Date: <span tal:content="python:info[sem[6]]"/>
74                    </td>
75                    <td width=30% align='center'>
76                    <img tal:attributes="src string:${static_base_url}butler.jpg"  alt="Signature"/>
77                    <br />Ms J.C. Butler
78                    <br />Principal</td>
79                </tr>           
80            </table>
81        </span>
82        </span>       
83       
84        <span tal:condition="python:not info[sem[2]]" tal:omit-tag="">     
85       
86        <br />     
87        <font color=red>Report not yet complete</font>
88         
89        </span> 
90       
91       
92    </span>
93</span>
94</metal:main>
95</metal:body>
Note: See TracBrowser for help on using the repository browser.