1 | <metal:body use-macro="here/main_template/macros/master"> |
---|
2 | <metal:main fill-slot="main"> |
---|
3 | <metal:block tal:define="faculties context/getNewStudentStatistics; |
---|
4 | mtool here/portal_membership; |
---|
5 | member mtool/getAuthenticatedMember; |
---|
6 | session_str python:context.getSessionId()[1];"> |
---|
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 | </nobr> |
---|
16 | <nobr><a href="statistics_ret_view">Returning Student Statistics</a> |
---|
17 | </nobr> |
---|
18 | </strong> |
---|
19 | |
---|
20 | <h3>New Student Statistics <span tal:content="session_str" /></h3> |
---|
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 New</th> |
---|
31 | <th align="right">AD</th> |
---|
32 | <th align="right">OR</th> |
---|
33 | <th align="right">CPE</th> |
---|
34 | <th align="right">CR</th> |
---|
35 | <th align="right">VC</th> |
---|
36 | <th align="right">SFP</th> |
---|
37 | <th align="right">CLR</th> |
---|
38 | <th align="right">CLV</th> |
---|
39 | |
---|
40 | </tr> |
---|
41 | <tr tal:repeat="d faculties" |
---|
42 | tal:attributes="class python:test(repeat['d'].even(), 'even ajaxtd', 'odd ajaxtd')"> |
---|
43 | <td width="80px"> <span tal:content="d/id" /> </td> |
---|
44 | <td width="80px" align="right"> |
---|
45 | <span tal:content="d/total_ft" /> |
---|
46 | </td> |
---|
47 | <td width="80px" align="right"> |
---|
48 | <span tal:content="d/admitted_ft" /> |
---|
49 | (<span tal:content="d/admitted_ft_percent" />%) |
---|
50 | </td> |
---|
51 | <td width="80px" align="right"> |
---|
52 | <span tal:content="d/objection_raised_ft" /> |
---|
53 | (<span tal:content="d/objection_raised_ft_percent" />%) |
---|
54 | </td> |
---|
55 | <td width="80px" align="right"> |
---|
56 | <span tal:content="d/clearance_pin_entered_ft" /> |
---|
57 | (<span tal:content="d/clearance_pin_entered_ft_percent" />%) |
---|
58 | </td> |
---|
59 | <td width="80px" align="right"> |
---|
60 | <span tal:content="d/clearance_requested_ft" /> |
---|
61 | (<span tal:content="d/clearance_requested_ft_percent" />%) |
---|
62 | </td> |
---|
63 | <td width="80px" align="right"> |
---|
64 | <span tal:content="d/cleared_and_validated_ft" /> |
---|
65 | (<span tal:content="d/cleared_and_validated_ft_percent" />%) |
---|
66 | </td> |
---|
67 | <td width="80px" align="right"> |
---|
68 | <span tal:content="d/school_fee_paid_ft" /> |
---|
69 | (<span tal:content="d/school_fee_paid_ft_percent" />%) |
---|
70 | </td> |
---|
71 | <td width="80px" align="right"> |
---|
72 | <span tal:content="d/courses_registered_ft" /> |
---|
73 | (<span tal:content="d/courses_registered_ft_percent" />%) |
---|
74 | </td> |
---|
75 | <td width="80px" align="right"> |
---|
76 | <span tal:content="d/courses_validated_ft" /> |
---|
77 | (<span tal:content="d/courses_validated_ft_percent" />%) |
---|
78 | </td> |
---|
79 | |
---|
80 | </tr> |
---|
81 | </table> |
---|
82 | |
---|
83 | <h3>Part-Time Students (DE, UG, PG)</h3> |
---|
84 | <br /> |
---|
85 | |
---|
86 | <table> |
---|
87 | <tr class="odd ajaxtd"> |
---|
88 | <th >Faculty</th> |
---|
89 | <th align="right">Total New</th> |
---|
90 | <th align="right">AD</th> |
---|
91 | <th align="right">OR</th> |
---|
92 | <th align="right">CPE</th> |
---|
93 | <th align="right">CR</th> |
---|
94 | <th align="right">VC</th> |
---|
95 | <th align="right">SFP</th> |
---|
96 | <th align="right">CLR</th> |
---|
97 | <th align="right">CLV</th> |
---|
98 | |
---|
99 | </tr> |
---|
100 | <tr tal:repeat="d faculties" |
---|
101 | tal:attributes="class python:test(repeat['d'].even(), 'even ajaxtd', 'odd ajaxtd')"> |
---|
102 | <td width="80px"> <span tal:content="d/id" /> </td> |
---|
103 | <td width="80px" align="right"> |
---|
104 | <span tal:content="d/total_pt" /> |
---|
105 | </td> |
---|
106 | <td width="80px" align="right"> |
---|
107 | <span tal:content="d/admitted_pt" /> |
---|
108 | (<span tal:content="d/admitted_pt_percent" />%) |
---|
109 | </td> |
---|
110 | <td width="80px" align="right"> |
---|
111 | <span tal:content="d/objection_raised_pt" /> |
---|
112 | (<span tal:content="d/objection_raised_pt_percent" />%) |
---|
113 | </td> |
---|
114 | <td width="80px" align="right"> |
---|
115 | <span tal:content="d/clearance_pin_entered_pt" /> |
---|
116 | (<span tal:content="d/clearance_pin_entered_pt_percent" />%) |
---|
117 | </td> |
---|
118 | <td width="80px" align="right"> |
---|
119 | <span tal:content="d/clearance_requested_pt" /> |
---|
120 | (<span tal:content="d/clearance_requested_pt_percent" />%) |
---|
121 | </td> |
---|
122 | <td width="80px" align="right"> |
---|
123 | <span tal:content="d/cleared_and_validated_pt" /> |
---|
124 | (<span tal:content="d/cleared_and_validated_pt_percent" />%) |
---|
125 | </td> |
---|
126 | <td width="80px" align="right"> |
---|
127 | <span tal:content="d/school_fee_paid_pt" /> |
---|
128 | (<span tal:content="d/school_fee_paid_pt_percent" />%) |
---|
129 | </td> |
---|
130 | <td width="80px" align="right"> |
---|
131 | <span tal:content="d/courses_registered_pt" /> |
---|
132 | (<span tal:content="d/courses_registered_pt_percent" />%) |
---|
133 | </td> |
---|
134 | <td width="80px" align="right"> |
---|
135 | <span tal:content="d/courses_validated_pt" /> |
---|
136 | (<span tal:content="d/courses_validated_pt_percent" />%) |
---|
137 | </td> |
---|
138 | |
---|
139 | </tr> |
---|
140 | </table> |
---|
141 | |
---|
142 | |
---|
143 | |
---|
144 | <br /> |
---|
145 | <table> |
---|
146 | <tr><td>AD:</td> <td>Admitted</td></tr> |
---|
147 | <tr><td>OR:</td> <td>Objection raised</td></tr> |
---|
148 | <tr><td>CPE:</td> <td>Clearance PIN entered</td></tr> |
---|
149 | <tr><td>CR: </td> <td>Clearance requested</td></tr> |
---|
150 | <tr><td>VC: </td> <td>Validated and cleared</td></tr> |
---|
151 | <tr><td>SFP: </td> <td>School fee paid</td></tr> |
---|
152 | <tr><td>CLR: </td> <td>Course list registered</td></tr> |
---|
153 | <tr><td>CLV: </td> <td>Course list validated</td></tr> |
---|
154 | </table> |
---|
155 | </span> |
---|
156 | </span> |
---|
157 | </metal:block> |
---|
158 | </metal:main> |
---|
159 | </metal:body> |
---|
160 | |
---|