1 | <metal:body use-macro="here/main_template/macros/master"> |
---|
2 | <metal:main fill-slot="main"> |
---|
3 | <metal:block tal:define="departments context/getNewStudentStatistics; |
---|
4 | mtool here/portal_membership; |
---|
5 | member mtool/getAuthenticatedMember;"> |
---|
6 | |
---|
7 | <span tal:condition="not: departments"> |
---|
8 | <span tal:content="here/illegal_view" /> |
---|
9 | </span> |
---|
10 | <span tal:condition="departments"> |
---|
11 | |
---|
12 | <strong> |
---|
13 | <nobr><a href="statistics_new_view">New Student Statistics</a> |
---|
14 | </nobr> |
---|
15 | <nobr><a href="statistics_ret_view">Returning Student Statistics</a> |
---|
16 | </nobr> |
---|
17 | <nobr><a href="statistics_reg_view">Registration Statistics</a> |
---|
18 | </nobr> |
---|
19 | <nobr><a href="list_students">Cleared Student Export</a> |
---|
20 | </nobr> |
---|
21 | </strong> |
---|
22 | |
---|
23 | <h3>New Student Statistics</h3> |
---|
24 | <br /> |
---|
25 | <span tal:condition="not:isAnon"> |
---|
26 | <table> |
---|
27 | <tr class="odd ajaxtd"> |
---|
28 | <th >Faculty</th> |
---|
29 | <th align="right">Total New</th> |
---|
30 | <th align="right">AD</th> |
---|
31 | <th align="right">OR</th> |
---|
32 | <th align="right">CPE</th> |
---|
33 | <th align="right">CR</th> |
---|
34 | <th align="right">VC</th> |
---|
35 | <th align="right">SFP+</th> |
---|
36 | </tr> |
---|
37 | <tr tal:repeat="d departments" |
---|
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/new" /> |
---|
42 | </td> |
---|
43 | <td width="80px" align="right"> |
---|
44 | <span tal:content="d/admitted" /> |
---|
45 | (<span tal:content="d/admitted_percent" />%) |
---|
46 | </td> |
---|
47 | <td width="80px" align="right"> |
---|
48 | <span tal:content="d/objection_raised" /> |
---|
49 | (<span tal:content="d/objection_raised_percent" />%) |
---|
50 | </td> |
---|
51 | <td width="80px" align="right"> |
---|
52 | <span tal:content="d/clearance_pin_entered" /> |
---|
53 | (<span tal:content="d/clearance_pin_entered_percent" />%) |
---|
54 | </td> |
---|
55 | <td width="80px" align="right"> |
---|
56 | <span tal:content="d/clearance_requested" /> |
---|
57 | (<span tal:content="d/clearance_requested_percent" />%) |
---|
58 | </td> |
---|
59 | <td width="80px" align="right"> |
---|
60 | <span tal:content="d/cleared_and_validated" /> |
---|
61 | (<span tal:content="d/cleared_and_validated_percent" />%) |
---|
62 | </td> |
---|
63 | <td width="80px" align="right"> |
---|
64 | <span tal:content="d/rest" /> |
---|
65 | (<span tal:content="d/rest_percent" />%) |
---|
66 | </td> |
---|
67 | </tr> |
---|
68 | </table> |
---|
69 | <br /> |
---|
70 | <table> |
---|
71 | <tr><td>AD:</td> <td>Admitted</td></tr> |
---|
72 | <tr><td>OR:</td> <td>Objection raised</td></tr> |
---|
73 | <tr><td>CPE:</td> <td>Clearance PIN entered</td></tr> |
---|
74 | <tr><td>CR: </td> <td>Clearance requested</td></tr> |
---|
75 | <tr><td>VC: </td> <td>Validated and cleared</td></tr> |
---|
76 | <tr><td>SFP+: </td> <td>School fee paid and further</td></tr> |
---|
77 | </table> |
---|
78 | </span> |
---|
79 | </span> |
---|
80 | </metal:block> |
---|
81 | </metal:main> |
---|
82 | </metal:body> |
---|
83 | |
---|