source: WAeUP_SRP/base/skins/waeup_statistics/statistics_ret_view.pt @ 2705

Last change on this file since 2705 was 2705, checked in by Henrik Bettermann, 17 years ago

new statistics for session 2007/2008

File size: 4.4 KB
RevLine 
[2243]1<metal:body use-macro="here/main_template/macros/master">
2  <metal:main fill-slot="main">
3  <metal:block tal:define="faculties context/getRetStudentStatistics;
4                        mtool here/portal_membership;
[2705]5                        member mtool/getAuthenticatedMember;
6                        session_str python:context.getSessionId()[1];">       
[2243]7
8      <span tal:condition="not: faculties">
9        <span tal:content="here/illegal_view" />
10      </span>
11      <span tal:condition="faculties">
12 
13      <strong>
14      <nobr><a href="search_students">Search Students</a>
15      &nbsp;&nbsp;&nbsp;&nbsp;</nobr>       
16      <nobr><a href="statistics_new_view">New Student Statistics</a>
17      &nbsp;&nbsp;&nbsp;&nbsp;</nobr>
18      </strong>     
19
[2705]20      <h3>Returning Student Statistics  <span tal:content="session_str" /></h3>
[2243]21      <br />     
22      <span tal:condition="not:isAnon">
23
24      <h3>Full-Time Students (UME, DE, UG, PG)</h3>
25      <br />           
26     
27        <table>
28          <tr class="odd ajaxtd">
29            <th >Faculty</th>
30            <th align="right">Total</th>
31            <th align="right">RET</th>
32            <th align="right">SFP</th>
33            <th align="right">CLR</th>
34            <th align="right">CLV</th>
35
36          </tr>
37          <tr tal:repeat="d faculties"
38              tal:attributes="class python:test(repeat['d'].even(), 'even ajaxtd', 'odd ajaxtd')">
39              <td width="80px"> <span tal:content="d/id" /> </td>
40              <td width="80px" align="right">
41                <span tal:content="d/total_ft" />
42              </td>
[2705]43                         
[2243]44              <td width="80px" align="right">
45                <span tal:content="d/returning_ft" />
46                (<span tal:content="d/returning_ft_percent" />%)
47              </td>             
48              <td width="80px" align="right">
49                <span tal:content="d/school_fee_paid_ft" />
50                (<span tal:content="d/school_fee_paid_ft_percent" />%)
51              </td>
52              <td width="80px" align="right">
53                <span tal:content="d/courses_registered_ft" />
54                (<span tal:content="d/courses_registered_ft_percent" />%)
55              </td>
56              <td width="80px" align="right">
57                <span tal:content="d/courses_validated_ft" />
58                (<span tal:content="d/courses_validated_ft_percent" />%)
59              </td>                                         
60
61          </tr>
62        </table>
63
64      <h3>Part-Time Students (DE, UG, PG)</h3>
65      <br />           
66
67        <table>
68          <tr class="odd ajaxtd">
69            <th >Faculty</th>
70            <th align="right">Total</th>
71            <th align="right">RET</th>
72            <th align="right">SFP</th>
73            <th align="right">CLR</th>
74            <th align="right">CLV</th>
75
76          </tr>
77          <tr tal:repeat="d faculties"
78              tal:attributes="class python:test(repeat['d'].even(), 'even ajaxtd', 'odd ajaxtd')">
79              <td width="80px"> <span tal:content="d/id" /> </td>
80              <td width="80px" align="right">
81                <span tal:content="d/total_pt" />
82              </td>
[2705]83         
[2243]84              <td width="80px" align="right">
85                <span tal:content="d/returning_pt" />
86                (<span tal:content="d/returning_pt_percent" />%)
87              </td>             
88              <td width="80px" align="right">
89                <span tal:content="d/school_fee_paid_pt" />
90                (<span tal:content="d/school_fee_paid_pt_percent" />%)
91              </td>
92              <td width="80px" align="right">
93                <span tal:content="d/courses_registered_pt" />
94                (<span tal:content="d/courses_registered_pt_percent" />%)
95              </td>
96              <td width="80px" align="right">
97                <span tal:content="d/courses_validated_pt" />
98                (<span tal:content="d/courses_validated_pt_percent" />%)
99              </td>                                         
100
101          </tr>
102        </table>
103
104       
105        <br />
106        <table>
107        <tr><td>Total: </td> <td>Those who have logged in</td></tr>
108        <tr><td>RET: </td> <td>Returning</td></tr>
109        <tr><td>SFP: </td> <td>School fee paid</td></tr>
110        <tr><td>CLR: </td> <td>Course list registered</td></tr>
111        <tr><td>CLV: </td> <td>Course list validated</td></tr>               
112        </table>
113      </span>
114      </span>
115  </metal:block>     
116  </metal:main>
117</metal:body>
118     
Note: See TracBrowser for help on using the repository browser.