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 | <span tal:condition="is_so"> |
---|
22 | <nobr><a href="add_student">Add Student Record</a> |
---|
23 | </nobr> |
---|
24 | <nobr><a href="paid_transfer_list">Export Transfer Students</a></nobr> |
---|
25 | </span> |
---|
26 | </strong> |
---|
27 | |
---|
28 | <h3>New Student Statistics</h3> |
---|
29 | <br /> |
---|
30 | <span tal:condition="not:isAnon"> |
---|
31 | <table> |
---|
32 | <tr class="odd ajaxtd"> |
---|
33 | <th >Faculty</th> |
---|
34 | <th align="right">Total New</th> |
---|
35 | <th align="right">AD</th> |
---|
36 | <th align="right">OR</th> |
---|
37 | <th align="right">CPE</th> |
---|
38 | <th align="right">CR</th> |
---|
39 | <th align="right">VC</th> |
---|
40 | <th align="right">SFP</th> |
---|
41 | </tr> |
---|
42 | <tr tal:repeat="d departments" |
---|
43 | tal:attributes="class python:test(repeat['d'].even(), 'even ajaxtd', 'odd ajaxtd')"> |
---|
44 | <td width="80px"> <span tal:content="d/id" /> </td> |
---|
45 | <td width="80px" align="right"> |
---|
46 | <span tal:content="d/new" /> |
---|
47 | </td> |
---|
48 | <td width="80px" align="right"> |
---|
49 | <span tal:content="d/admitted" /> |
---|
50 | (<span tal:content="d/admitted_percent" />%) |
---|
51 | </td> |
---|
52 | <td width="80px" align="right"> |
---|
53 | <span tal:content="d/objection_raised" /> |
---|
54 | (<span tal:content="d/objection_raised_percent" />%) |
---|
55 | </td> |
---|
56 | <td width="80px" align="right"> |
---|
57 | <span tal:content="d/clearance_pin_entered" /> |
---|
58 | (<span tal:content="d/clearance_pin_entered_percent" />%) |
---|
59 | </td> |
---|
60 | <td width="80px" align="right"> |
---|
61 | <span tal:content="d/clearance_requested" /> |
---|
62 | (<span tal:content="d/clearance_requested_percent" />%) |
---|
63 | </td> |
---|
64 | <td width="80px" align="right"> |
---|
65 | <span tal:content="d/cleared_and_validated" /> |
---|
66 | (<span tal:content="d/cleared_and_validated_percent" />%) |
---|
67 | </td> |
---|
68 | <td width="80px" align="right"> |
---|
69 | <span tal:content="d/rest" /> |
---|
70 | (<span tal:content="d/rest_percent" />%) |
---|
71 | </td> |
---|
72 | </tr> |
---|
73 | </table> |
---|
74 | <br /> |
---|
75 | <table> |
---|
76 | <tr><td>AD:</td> <td>Admitted</td></tr> |
---|
77 | <tr><td>OR:</td> <td>Objection raised</td></tr> |
---|
78 | <tr><td>CPE:</td> <td>Clearance PIN entered</td></tr> |
---|
79 | <tr><td>CR: </td> <td>Clearance requested</td></tr> |
---|
80 | <tr><td>VC: </td> <td>Validated and cleared</td></tr> |
---|
81 | <tr><td>SFP: </td> <td>School fee paid</td></tr> |
---|
82 | </table> |
---|
83 | </span> |
---|
84 | </span> |
---|
85 | </metal:block> |
---|
86 | </metal:main> |
---|
87 | </metal:body> |
---|
88 | |
---|