source: WAeUP_SRP/trunk/skins/waeup_statistics/getApplicantsStatistics.py @ 5264

Last change on this file since 5264 was 5259, checked in by Henrik Bettermann, 14 years ago

add pume2 counter

File size: 1.7 KB
Line 
1## Script (Python) "getApplicantsStatistics"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=
8##title=
9##
10# $Id: getApplicantsStatistics.py 1277 2007-01-11 21:11:37Z joachim $
11"""
12return Student Statistics
13"""
14
15import logging
16logger = logging.getLogger('Skins.getApplicantsStatistics')
17
18logger.info('%s invoked statistics' % context.portal_membership.getAuthenticatedMember())
19if not context.isStaff():
20    return 'Not allowed'
21
22
23info = {}
24res_submitted_pume = context.applicants_catalog(status = 'submitted', screening_type = 'pume')
25res_submitted_pume2 = context.applicants_catalog(status = 'submitted', screening_type = 'pume2')
26res_submitted_cest = context.applicants_catalog(status = 'submitted', screening_type = 'cest')
27res_submitted_sandwich = context.applicants_catalog(status = 'submitted', screening_type = 'sandwich')
28res_submitted_dp = context.applicants_catalog(status = 'submitted', screening_type = 'dp')
29res_not_admitted = context.applicants_catalog(status = 'not admitted')
30res_submitted_pde = context.applicants_catalog(status = 'submitted', screening_type = 'pde')
31res_admitted = context.applicants_catalog(status = 'admitted')
32res_created = context.applicants_catalog(status = 'created')
33
34info['submitted_pume'] = len(res_submitted_pume)
35info['submitted_pume2'] = len(res_submitted_pume2)
36info['submitted_cest'] = len(res_submitted_cest)
37info['submitted_sandwich'] = len(res_submitted_sandwich)
38info['submitted_dp'] = len(res_submitted_dp)
39info['admitted'] = len(res_admitted)
40info['not_admitted'] = len(res_not_admitted)
41info['submitted_pde'] = len(res_submitted_pde)
42info['created'] = len(res_created)
43
44return info
45
46
47
Note: See TracBrowser for help on using the repository browser.