- Timestamp:
- 5 Aug 2007, 20:41:13 (17 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_student
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_student/getSimpleStudentStatistics.py
r2070 r2087 54 54 dict['title'] = 'All Faculties' 55 55 56 57 res_ft = context.students_catalog(mode = full_time) 58 dict['total_ft'] = len(res_ft) 59 60 res_pt = context.students_catalog(mode = part_time) 61 dict['total_pt'] = len(res_pt) 62 63 res_dp = context.students_catalog(mode = diploma) 64 dict['total_dp'] = len(res_dp) 65 56 66 res_Aft = context.students_catalog(review_state = catA, mode = full_time) 57 67 dict['total_Aft'] = len(res_Aft) … … 93 103 dict['id'] = f.getId 94 104 dict['title'] = f.Title 105 106 res_ft = context.students_catalog(faculty = f.getId, mode = full_time) 107 dict['total_ft'] = len(res_ft) 108 109 res_pt = context.students_catalog(faculty = f.getId, mode = part_time) 110 dict['total_pt'] = len(res_pt) 111 112 res_dp = context.students_catalog(faculty = f.getId, mode = diploma) 113 dict['total_dp'] = len(res_dp) 114 95 115 res_Aft = context.students_catalog(faculty = f.getId, review_state = catA, mode = full_time) 96 116 dict['total_Aft'] = len(res_Aft) -
WAeUP_SRP/trunk/skins/waeup_student/statistics_simple_view.pt
r2070 r2087 28 28 <tr> 29 29 <th> </th> 30 31 <th style="border-style:solid; border-width:1px; border-color:black" align="center" colspan="3">Total</th> 32 30 33 <th style="border-style:solid; border-width:1px; border-color:black" align="center" colspan="3">Category A</th> 31 34 … … 48 51 <th align="right">PT</th> 49 52 <th align="right">DP</th> 53 <th align="right">FT</th> 54 <th align="right">PT</th> 55 <th align="right">DP</th> 50 56 51 57 </tr> … … 54 60 <td width="80px"> <span tal:content="d/id" /> </td> 55 61 62 <td width="60px" align="right"> 63 <span tal:content="d/total_ft" /> 64 </td> 65 66 <td width="60px" align="right"> 67 <span tal:content="d/total_pt" /> 68 </td> 69 70 <td width="60px" align="right"> 71 <span tal:content="d/total_dp" /> 72 </td> 73 56 74 <td width="60px" align="right"> 57 75 <span tal:content="d/total_Aft" /> … … 100 118 <tr><td>Category A: </td> <td>students who paid their school fee</td></tr> 101 119 <tr><td>Category B: </td> <td>students who registered their courses online (A contains B)</td></tr> 102 <tr><td>Category C: </td> <td>students who whohave not yet paid their school fee</td></tr>120 <tr><td>Category C: </td> <td>students who have not yet paid their school fee</td></tr> 103 121 <tr><td> </td><td> </td></tr> 104 122 <tr><td colspan="2"><strong>Notice:</strong> Category C is not complete.
Note: See TracChangeset for help on using the changeset viewer.