Changeset 2528 for WAeUP_SRP/base/skins/waeup_student
- Timestamp:
- 4 Nov 2007, 20:15:03 (17 years ago)
- Location:
- WAeUP_SRP/base/skins/waeup_student
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_student/apply_admission_manage_form.pt
r2385 r2528 20 20 <table tal:define="info_applicants context/getApplicantsStatistics"> 21 21 <tr> 22 <td>PUME Screening Applications:</td>22 <td>PUME Applications - submitted:</td> 23 23 <td><span tal:replace="info_applicants/submitted_pume" /></td> 24 24 </tr> 25 25 <tr> 26 <td>PUDE Screening Applications:</td> 26 <td>PUME Applications - admitted:</td> 27 <td><span tal:replace="info_applicants/admitted_pume" /></td> 28 </tr> 29 <tr> 30 <td>PUME Applications - not admitted:</td> 31 <td><span tal:replace="info_applicants/not_admitted_pume" /></td> 32 </tr> 33 <tr> 34 <td>PUDE Applications - submitted:</td> 27 35 <td><span tal:replace="info_applicants/submitted_pde" /></td> 28 36 </tr> -
WAeUP_SRP/base/skins/waeup_student/getApplicantsStatistics.py
r2385 r2528 26 26 #res_submitted = context.applicants_catalog(status = 'submitted') 27 27 res_submitted_pume = context.applicants_catalog(status = 'submitted', screening_type = 'pume') 28 res_admitted_pume = context.applicants_catalog(status = 'admitted', screening_type = 'pume') 29 res_not_admitted_pume = context.applicants_catalog(status = 'not admitted', screening_type = 'pume') 28 30 res_submitted_pde = context.applicants_catalog(status = 'submitted', screening_type = 'pde') 29 31 #info['entered'] = len(res_entered) … … 33 35 34 36 info['submitted_pume'] = len(res_submitted_pume) 37 info['admitted_pume'] = len(res_admitted_pume) 38 info['not_admitted_pume'] = len(res_not_admitted_pume) 35 39 info['submitted_pde'] = len(res_submitted_pde) 36 40
Note: See TracChangeset for help on using the changeset viewer.