Changeset 5187 for WAeUP_SRP/trunk/skins/waeup_statistics
- Timestamp:
- 10 May 2010, 19:00:38 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_statistics/getApplicantsStatistics.py
r3709 r5187 25 25 res_submitted_cest = context.applicants_catalog(status = 'submitted', screening_type = 'cest') 26 26 res_submitted_sandwich = context.applicants_catalog(status = 'submitted', screening_type = 'sandwich') 27 res_submitted_dp = context.applicants_catalog(status = 'submitted', screening_type = 'dp') 27 28 res_not_admitted = context.applicants_catalog(status = 'not admitted') 28 29 res_submitted_pde = context.applicants_catalog(status = 'submitted', screening_type = 'pde') … … 33 34 info['submitted_cest'] = len(res_submitted_cest) 34 35 info['submitted_sandwich'] = len(res_submitted_sandwich) 36 info['submitted_dp'] = len(res_submitted_dp) 35 37 info['admitted'] = len(res_admitted) 36 38 info['not_admitted'] = len(res_not_admitted)
Note: See TracChangeset for help on using the changeset viewer.